@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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @lets-events/react@12.3.8 build
2
+ > @lets-events/react@12.3.9 build
3
3
  > tsup src/index.tsx --format esm,cjs --dts --external react
4
4
 
5
5
  CLI Building entry: src/index.tsx
@@ -9,11 +9,11 @@
9
9
  CLI Target: es6
10
10
  ESM Build start
11
11
  CJS Build start
12
- CJS dist\index.js 394.47 KB
13
- CJS ⚡️ Build success in 235ms
14
- ESM dist\index.mjs 380.40 KB
15
- ESM ⚡️ Build success in 237ms
12
+ CJS dist\index.js 394.53 KB
13
+ CJS ⚡️ Build success in 836ms
14
+ ESM dist\index.mjs 380.45 KB
15
+ ESM ⚡️ Build success in 837ms
16
16
  DTS Build start
17
- DTS ⚡️ Build success in 4757ms
17
+ DTS ⚡️ Build success in 5017ms
18
18
  DTS dist\index.d.mts 401.14 KB
19
19
  DTS dist\index.d.ts 401.14 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @lets-events/react
2
2
 
3
+ ## 12.3.9
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: card
8
+
3
9
  ## 12.3.8
4
10
 
5
11
  ### Patch Changes
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)(CardStyled, __spreadProps(__spreadValues({}, props), { css: { padding, borderRadius: radius }, children }));
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(CardStyled, __spreadProps(__spreadValues({}, props), { css: { padding, borderRadius: radius }, children }));
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lets-events/react",
3
- "version": "12.3.8",
3
+ "version": "12.3.9",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -57,7 +57,10 @@ export function Card({
57
57
  ...props
58
58
  }: CardProps) {
59
59
  return (
60
- <CardStyled {...props} css={{ padding, borderRadius: radius }}>
60
+ <CardStyled
61
+ {...props}
62
+ css={{ padding, borderRadius: radius, ...props.css }}
63
+ >
61
64
  {children}
62
65
  </CardStyled>
63
66
  );