@lets-events/react 12.3.8 → 12.3.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.
- package/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +6 -0
- package/dist/index.js +7 -1
- package/dist/index.mjs +7 -1
- package/package.json +1 -1
- package/src/components/Card.tsx +4 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @lets-events/react@12.3.
|
|
2
|
+
> @lets-events/react@12.3.9 build
|
|
3
3
|
> tsup src/index.tsx --format esm,cjs --dts --external react
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
[34mCLI[39m Target: es6
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
|
-
[32mCJS[39m [1mdist\index.js [22m[32m394.
|
|
13
|
-
[32mCJS[39m ⚡️ Build success in
|
|
14
|
-
[32mESM[39m [1mdist\index.mjs [22m[32m380.
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
12
|
+
[32mCJS[39m [1mdist\index.js [22m[32m394.53 KB[39m
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 836ms
|
|
14
|
+
[32mESM[39m [1mdist\index.mjs [22m[32m380.45 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 837ms
|
|
16
16
|
[34mDTS[39m Build start
|
|
17
|
-
[32mDTS[39m ⚡️ Build success in
|
|
17
|
+
[32mDTS[39m ⚡️ Build success in 5017ms
|
|
18
18
|
[32mDTS[39m [1mdist\index.d.mts [22m[32m401.14 KB[39m
|
|
19
19
|
[32mDTS[39m [1mdist\index.d.ts [22m[32m401.14 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -9159,7 +9159,13 @@ function Card(_a) {
|
|
|
9159
9159
|
"padding",
|
|
9160
9160
|
"radius"
|
|
9161
9161
|
]);
|
|
9162
|
-
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
9162
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
9163
|
+
CardStyled,
|
|
9164
|
+
__spreadProps(__spreadValues({}, props), {
|
|
9165
|
+
css: __spreadValues({ padding, borderRadius: radius }, props.css),
|
|
9166
|
+
children
|
|
9167
|
+
})
|
|
9168
|
+
);
|
|
9163
9169
|
}
|
|
9164
9170
|
|
|
9165
9171
|
// src/components/TextareaField.tsx
|
package/dist/index.mjs
CHANGED
|
@@ -9047,7 +9047,13 @@ function Card(_a) {
|
|
|
9047
9047
|
"padding",
|
|
9048
9048
|
"radius"
|
|
9049
9049
|
]);
|
|
9050
|
-
return /* @__PURE__ */ jsx21(
|
|
9050
|
+
return /* @__PURE__ */ jsx21(
|
|
9051
|
+
CardStyled,
|
|
9052
|
+
__spreadProps(__spreadValues({}, props), {
|
|
9053
|
+
css: __spreadValues({ padding, borderRadius: radius }, props.css),
|
|
9054
|
+
children
|
|
9055
|
+
})
|
|
9056
|
+
);
|
|
9051
9057
|
}
|
|
9052
9058
|
|
|
9053
9059
|
// src/components/TextareaField.tsx
|
package/package.json
CHANGED
package/src/components/Card.tsx
CHANGED
|
@@ -57,7 +57,10 @@ export function Card({
|
|
|
57
57
|
...props
|
|
58
58
|
}: CardProps) {
|
|
59
59
|
return (
|
|
60
|
-
<CardStyled
|
|
60
|
+
<CardStyled
|
|
61
|
+
{...props}
|
|
62
|
+
css={{ padding, borderRadius: radius, ...props.css }}
|
|
63
|
+
>
|
|
61
64
|
{children}
|
|
62
65
|
</CardStyled>
|
|
63
66
|
);
|