@lets-events/react 12.2.13 → 12.2.14
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 +8 -8
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
- package/src/components/Card.tsx +4 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @lets-events/react@12.2.
|
|
2
|
+
> @lets-events/react@12.2.14 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
|
-
[
|
|
13
|
-
[
|
|
14
|
-
[
|
|
15
|
-
[
|
|
12
|
+
[32mCJS[39m [1mdist\index.js [22m[32m394.71 KB[39m
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 1146ms
|
|
14
|
+
[32mESM[39m [1mdist\index.mjs [22m[32m380.74 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 1147ms
|
|
16
16
|
[34mDTS[39m Build start
|
|
17
|
-
[32mDTS[39m ⚡️ Build success in
|
|
18
|
-
[32mDTS[39m [1mdist\index.d.mts [22m[32m398.
|
|
19
|
-
[32mDTS[39m [1mdist\index.d.ts [22m[32m398.
|
|
17
|
+
[32mDTS[39m ⚡️ Build success in 4863ms
|
|
18
|
+
[32mDTS[39m [1mdist\index.d.mts [22m[32m398.62 KB[39m
|
|
19
|
+
[32mDTS[39m [1mdist\index.d.ts [22m[32m398.62 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -11052,7 +11052,7 @@ declare function StepWrapper({ children, ...props }: {
|
|
|
11052
11052
|
}): react_jsx_runtime.JSX.Element;
|
|
11053
11053
|
|
|
11054
11054
|
declare const CardStyled: _stitches_react_types_styled_component.StyledComponent<React__default.ForwardRefExoticComponent<_radix_ui_themes.CardProps & React__default.RefAttributes<HTMLDivElement>>, {
|
|
11055
|
-
color?: "error" | "primary" | "disable" | undefined;
|
|
11055
|
+
color?: "warning" | "error" | "primary" | "disable" | undefined;
|
|
11056
11056
|
boxShadow?: boolean | "false" | "true" | undefined;
|
|
11057
11057
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11058
11058
|
colors: {
|
package/dist/index.d.ts
CHANGED
|
@@ -11052,7 +11052,7 @@ declare function StepWrapper({ children, ...props }: {
|
|
|
11052
11052
|
}): react_jsx_runtime.JSX.Element;
|
|
11053
11053
|
|
|
11054
11054
|
declare const CardStyled: _stitches_react_types_styled_component.StyledComponent<React__default.ForwardRefExoticComponent<_radix_ui_themes.CardProps & React__default.RefAttributes<HTMLDivElement>>, {
|
|
11055
|
-
color?: "error" | "primary" | "disable" | undefined;
|
|
11055
|
+
color?: "warning" | "error" | "primary" | "disable" | undefined;
|
|
11056
11056
|
boxShadow?: boolean | "false" | "true" | undefined;
|
|
11057
11057
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11058
11058
|
colors: {
|
package/dist/index.js
CHANGED
|
@@ -9072,6 +9072,10 @@ var CardStyled = styled(import_themes16.Card, {
|
|
|
9072
9072
|
error: {
|
|
9073
9073
|
backgroundColor: "$error50",
|
|
9074
9074
|
border: "1px solid $error600"
|
|
9075
|
+
},
|
|
9076
|
+
warning: {
|
|
9077
|
+
backgroundColor: "$yellow50",
|
|
9078
|
+
border: "1px solid $yellow600"
|
|
9075
9079
|
}
|
|
9076
9080
|
},
|
|
9077
9081
|
boxShadow: {
|
package/dist/index.mjs
CHANGED
|
@@ -8960,6 +8960,10 @@ var CardStyled = styled(CardRadix, {
|
|
|
8960
8960
|
error: {
|
|
8961
8961
|
backgroundColor: "$error50",
|
|
8962
8962
|
border: "1px solid $error600"
|
|
8963
|
+
},
|
|
8964
|
+
warning: {
|
|
8965
|
+
backgroundColor: "$yellow50",
|
|
8966
|
+
border: "1px solid $yellow600"
|
|
8963
8967
|
}
|
|
8964
8968
|
},
|
|
8965
8969
|
boxShadow: {
|
package/package.json
CHANGED
package/src/components/Card.tsx
CHANGED