@vention/machine-ui 3.32.0 → 3.33.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/index.esm.js CHANGED
@@ -4968,6 +4968,9 @@ const duotoneIconImports = {
4968
4968
  ["duotone-robot-arm"]: /*#__PURE__*/lazy(() => import('./duotone-robot-arm.esm.js')),
4969
4969
  ["duotone-rotary"]: /*#__PURE__*/lazy(() => import('./duotone-rotary.esm.js')),
4970
4970
  ["duotone-state-machine"]: /*#__PURE__*/lazy(() => import('./duotone-state-machine.esm.js')),
4971
+ ["mouse-left"]: /*#__PURE__*/lazy(() => import('./mouse-left.esm.js')),
4972
+ ["mouse-right"]: /*#__PURE__*/lazy(() => import('./mouse-right.esm.js')),
4973
+ ["mouse-scroll"]: /*#__PURE__*/lazy(() => import('./mouse-scroll.esm.js')),
4971
4974
  ["position-rx"]: /*#__PURE__*/lazy(() => import('./position-rx.esm.js')),
4972
4975
  ["position-ry"]: /*#__PURE__*/lazy(() => import('./position-ry.esm.js')),
4973
4976
  ["position-rz"]: /*#__PURE__*/lazy(() => import('./position-rz.esm.js')),
@@ -0,0 +1,50 @@
1
+ import './index.esm.js';
2
+ import { jsxs, jsx } from 'react/jsx-runtime';
3
+ import '@mui/material';
4
+ import '@tabler/icons-react';
5
+ import 'react';
6
+ import 'tss-react/mui';
7
+ import '@mui/material/Box';
8
+ import '@mui/material/CircularProgress';
9
+ import '@mui/material/styles';
10
+ import 'react-draggable';
11
+ import '@mui/material/Slider';
12
+ import '@mui/material/Typography';
13
+ import 'tss-react';
14
+
15
+ const SvgMouseLeft = props => jsxs("svg", Object.assign({
16
+ width: 13,
17
+ height: 19,
18
+ viewBox: "0 0 13 19",
19
+ fill: "none",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props, {
22
+ children: [jsxs("g", {
23
+ style: {
24
+ mixBlendMode: "multiply"
25
+ },
26
+ children: [jsx("path", {
27
+ d: "M0.5 6.5C0.5 3.18629 3.18629 0.5 6.5 0.5C9.81371 0.5 12.5 3.18629 12.5 6.5V12.5C12.5 15.8137 9.81371 18.5 6.5 18.5C3.18629 18.5 0.5 15.8137 0.5 12.5V6.5Z",
28
+ fill: "white"
29
+ }), jsx("path", {
30
+ d: "M0.5 6.5C0.5 3.18629 3.18629 0.5 6.5 0.5C9.81371 0.5 12.5 3.18629 12.5 6.5V12.5C12.5 15.8137 9.81371 18.5 6.5 18.5C3.18629 18.5 0.5 15.8137 0.5 12.5V6.5Z",
31
+ stroke: "#64748B"
32
+ })]
33
+ }), jsx("path", {
34
+ d: "M0.5 6.5C0.5 3.18629 3.18629 0.5 6.5 0.5V4.5C5.94772 4.5 5.5 4.94772 5.5 5.5V7.5H0.5V6.5Z",
35
+ fill: "#3B82F6",
36
+ stroke: "#64748B"
37
+ }), jsx("path", {
38
+ d: "M12.5 6.5C12.5 3.18629 9.81371 0.5 6.5 0.5V4.5C7.05228 4.5 7.5 4.94772 7.5 5.5V7.5H12.5V6.5Z",
39
+ stroke: "#64748B"
40
+ }), jsx("rect", {
41
+ x: 5.5,
42
+ y: 4.5,
43
+ width: 2,
44
+ height: 6,
45
+ rx: 1,
46
+ stroke: "#64748B"
47
+ })]
48
+ }));
49
+
50
+ export { SvgMouseLeft as default };
@@ -0,0 +1,42 @@
1
+ import './index.esm.js';
2
+ import { jsxs, jsx } from 'react/jsx-runtime';
3
+ import '@mui/material';
4
+ import '@tabler/icons-react';
5
+ import 'react';
6
+ import 'tss-react/mui';
7
+ import '@mui/material/Box';
8
+ import '@mui/material/CircularProgress';
9
+ import '@mui/material/styles';
10
+ import 'react-draggable';
11
+ import '@mui/material/Slider';
12
+ import '@mui/material/Typography';
13
+ import 'tss-react';
14
+
15
+ const SvgMouseRight = props => jsxs("svg", Object.assign({
16
+ width: 13,
17
+ height: 19,
18
+ viewBox: "0 0 13 19",
19
+ fill: "none",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props, {
22
+ children: [jsx("path", {
23
+ d: "M12.5 6.5C12.5 3.18629 9.81371 0.5 6.5 0.5C3.18629 0.5 0.5 3.18629 0.5 6.5V12.5C0.5 15.8137 3.18629 18.5 6.5 18.5C9.81371 18.5 12.5 15.8137 12.5 12.5V6.5Z",
24
+ fill: "white",
25
+ stroke: "#64748B"
26
+ }), jsx("path", {
27
+ d: "M12.5 6.5C12.5 3.18629 9.81371 0.5 6.5 0.5V4.5C7.05228 4.5 7.5 4.94772 7.5 5.5V7.5H12.5V6.5Z",
28
+ fill: "#3B82F6",
29
+ stroke: "#64748B"
30
+ }), jsx("path", {
31
+ d: "M0.5 6.5C0.5 3.18629 3.18629 0.5 6.5 0.5V4.5C5.94772 4.5 5.5 4.94772 5.5 5.5V7.5H0.5V6.5Z",
32
+ stroke: "#64748B"
33
+ }), jsx("rect", {
34
+ width: 2,
35
+ height: 6,
36
+ rx: 1,
37
+ transform: "matrix(-1 0 0 1 7.5 4.5)",
38
+ stroke: "#64748B"
39
+ })]
40
+ }));
41
+
42
+ export { SvgMouseRight as default };
@@ -0,0 +1,48 @@
1
+ import './index.esm.js';
2
+ import { jsx, jsxs } from 'react/jsx-runtime';
3
+ import '@mui/material';
4
+ import '@tabler/icons-react';
5
+ import 'react';
6
+ import 'tss-react/mui';
7
+ import '@mui/material/Box';
8
+ import '@mui/material/CircularProgress';
9
+ import '@mui/material/styles';
10
+ import 'react-draggable';
11
+ import '@mui/material/Slider';
12
+ import '@mui/material/Typography';
13
+ import 'tss-react';
14
+
15
+ const SvgMouseScroll = props => jsx("svg", Object.assign({
16
+ width: 13,
17
+ height: 19,
18
+ viewBox: "0 0 13 19",
19
+ fill: "none",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props, {
22
+ children: jsxs("g", {
23
+ style: {
24
+ mixBlendMode: "multiply"
25
+ },
26
+ children: [jsx("path", {
27
+ d: "M0.5 6.5C0.5 3.18629 3.18629 0.5 6.5 0.5C9.81371 0.5 12.5 3.18629 12.5 6.5V12.5C12.5 15.8137 9.81371 18.5 6.5 18.5C3.18629 18.5 0.5 15.8137 0.5 12.5V6.5Z",
28
+ fill: "white",
29
+ stroke: "#64748B"
30
+ }), jsx("path", {
31
+ d: "M0.5 6.5C0.5 3.18629 3.18629 0.5 6.5 0.5V4.5C5.94772 4.5 5.5 4.94772 5.5 5.5V7.5H0.5V6.5Z",
32
+ stroke: "#64748B"
33
+ }), jsx("path", {
34
+ d: "M12.5 6.5C12.5 3.18629 9.81371 0.5 6.5 0.5V4.5C7.05228 4.5 7.5 4.94772 7.5 5.5V7.5H12.5V6.5Z",
35
+ stroke: "#64748B"
36
+ }), jsx("rect", {
37
+ x: 5.5,
38
+ y: 4.5,
39
+ width: 2,
40
+ height: 6,
41
+ rx: 1,
42
+ fill: "#3B82F6",
43
+ stroke: "#64748B"
44
+ })]
45
+ })
46
+ }));
47
+
48
+ export { SvgMouseScroll as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vention/machine-ui",
3
- "version": "3.32.0",
3
+ "version": "3.33.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/VentionCo/machine-cloud.git"
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgMouseLeft: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgMouseLeft;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgMouseRight: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgMouseRight;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgMouseScroll: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgMouseScroll;
@@ -443,6 +443,9 @@ export declare const duotoneIconImports: {
443
443
  "duotone-robot-arm": import("react").LazyExoticComponent<(props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element>;
444
444
  "duotone-rotary": import("react").LazyExoticComponent<(props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element>;
445
445
  "duotone-state-machine": import("react").LazyExoticComponent<(props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element>;
446
+ "mouse-left": import("react").LazyExoticComponent<(props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element>;
447
+ "mouse-right": import("react").LazyExoticComponent<(props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element>;
448
+ "mouse-scroll": import("react").LazyExoticComponent<(props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element>;
446
449
  "position-rx": import("react").LazyExoticComponent<(props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element>;
447
450
  "position-ry": import("react").LazyExoticComponent<(props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element>;
448
451
  "position-rz": import("react").LazyExoticComponent<(props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element>;