@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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @lets-events/react@12.2.13 build
2
+ > @lets-events/react@12.2.14 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
- ESM dist\index.mjs 380.64 KB
13
- ESM ⚡️ Build success in 231ms
14
- CJS dist\index.js 394.61 KB
15
- CJS ⚡️ Build success in 232ms
12
+ CJS dist\index.js 394.71 KB
13
+ CJS ⚡️ Build success in 1146ms
14
+ ESM dist\index.mjs 380.74 KB
15
+ ESM ⚡️ Build success in 1147ms
16
16
  DTS Build start
17
- DTS ⚡️ Build success in 4562ms
18
- DTS dist\index.d.mts 398.61 KB
19
- DTS dist\index.d.ts 398.61 KB
17
+ DTS ⚡️ Build success in 4863ms
18
+ DTS dist\index.d.mts 398.62 KB
19
+ DTS dist\index.d.ts 398.62 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @lets-events/react
2
2
 
3
+ ## 12.2.14
4
+
5
+ ### Patch Changes
6
+
7
+ - add warning color to card
8
+
3
9
  ## 12.2.13
4
10
 
5
11
  ### Patch Changes
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lets-events/react",
3
- "version": "12.2.13",
3
+ "version": "12.2.14",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -25,6 +25,10 @@ export const CardStyled = styled(CardRadix, {
25
25
  backgroundColor: "$error50",
26
26
  border: "1px solid $error600",
27
27
  },
28
+ warning: {
29
+ backgroundColor: "$yellow50",
30
+ border: "1px solid $yellow600",
31
+ },
28
32
  },
29
33
  boxShadow: {
30
34
  true: {