@tecsinapse/cortex-react 1.13.8 → 1.13.9
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.
|
@@ -16,6 +16,7 @@ const Carousel = ({ images }) => {
|
|
|
16
16
|
items: itemsCarousel
|
|
17
17
|
});
|
|
18
18
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "overflow-hidden w-fit relative", children: [
|
|
19
|
+
carouselFragment,
|
|
19
20
|
itemsCarousel.length > 1 ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
20
21
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
21
22
|
Button.Button,
|
|
@@ -39,8 +40,7 @@ const Carousel = ({ images }) => {
|
|
|
39
40
|
children: /* @__PURE__ */ jsxRuntime.jsx(io.IoIosArrowForward, {})
|
|
40
41
|
}
|
|
41
42
|
)
|
|
42
|
-
] }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {})
|
|
43
|
-
carouselFragment
|
|
43
|
+
] }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {})
|
|
44
44
|
] });
|
|
45
45
|
};
|
|
46
46
|
|
|
@@ -5,8 +5,8 @@ var clsx = require('clsx');
|
|
|
5
5
|
var React = require('react');
|
|
6
6
|
|
|
7
7
|
const Box = React.forwardRef((props, ref) => {
|
|
8
|
-
const { id, ...rest } = props;
|
|
9
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-tera h-kilo overflow-hidden relative", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
8
|
+
const { id, className, ...rest } = props;
|
|
9
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx("w-tera h-kilo border overflow-hidden relative", className), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
10
10
|
"input",
|
|
11
11
|
{
|
|
12
12
|
...rest,
|
|
@@ -14,6 +14,7 @@ const Carousel = ({ images }) => {
|
|
|
14
14
|
items: itemsCarousel
|
|
15
15
|
});
|
|
16
16
|
return /* @__PURE__ */ jsxs("div", { className: "overflow-hidden w-fit relative", children: [
|
|
17
|
+
carouselFragment,
|
|
17
18
|
itemsCarousel.length > 1 ? /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
18
19
|
/* @__PURE__ */ jsx(
|
|
19
20
|
Button,
|
|
@@ -37,8 +38,7 @@ const Carousel = ({ images }) => {
|
|
|
37
38
|
children: /* @__PURE__ */ jsx(IoIosArrowForward, {})
|
|
38
39
|
}
|
|
39
40
|
)
|
|
40
|
-
] }) : /* @__PURE__ */ jsx(Fragment, {})
|
|
41
|
-
carouselFragment
|
|
41
|
+
] }) : /* @__PURE__ */ jsx(Fragment, {})
|
|
42
42
|
] });
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -3,8 +3,8 @@ import clsx from 'clsx';
|
|
|
3
3
|
import { forwardRef } from 'react';
|
|
4
4
|
|
|
5
5
|
const Box = forwardRef((props, ref) => {
|
|
6
|
-
const { id, ...rest } = props;
|
|
7
|
-
return /* @__PURE__ */ jsx("div", { className: "w-tera h-kilo overflow-hidden relative", children: /* @__PURE__ */ jsx(
|
|
6
|
+
const { id, className, ...rest } = props;
|
|
7
|
+
return /* @__PURE__ */ jsx("div", { className: clsx("w-tera h-kilo border overflow-hidden relative", className), children: /* @__PURE__ */ jsx(
|
|
8
8
|
"input",
|
|
9
9
|
{
|
|
10
10
|
...rest,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tecsinapse/cortex-react",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.9",
|
|
4
4
|
"description": "React components based in @tecsinapse/cortex-core",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"react-icons": ">=5.2.0",
|
|
48
48
|
"tailwind": ">=3.3.0"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "f1146d1caa2209ad725a07dc1e89fd2d8093347e"
|
|
51
51
|
}
|