@lets-events/react 12.2.3 → 12.2.4

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.3 build
2
+ > @lets-events/react@12.2.4 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 393.07 KB
13
- CJS ⚡️ Build success in 224ms
14
- ESM dist\index.mjs 379.12 KB
15
- ESM ⚡️ Build success in 225ms
12
+ CJS dist\index.js 393.23 KB
13
+ CJS ⚡️ Build success in 227ms
14
+ ESM dist\index.mjs 379.28 KB
15
+ ESM ⚡️ Build success in 228ms
16
16
  DTS Build start
17
- DTS ⚡️ Build success in 4541ms
17
+ DTS ⚡️ Build success in 4575ms
18
18
  DTS dist\index.d.mts 389.04 KB
19
19
  DTS dist\index.d.ts 389.04 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @lets-events/react
2
2
 
3
+ ## 12.2.4
4
+
5
+ ### Patch Changes
6
+
7
+ - add outlined neutral compound variant
8
+
3
9
  ## 12.2.3
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -1823,6 +1823,15 @@ var ButtonStyled = styled(import_themes2.Button, {
1823
1823
  }
1824
1824
  }
1825
1825
  },
1826
+ compoundVariants: [
1827
+ {
1828
+ color: "neutral",
1829
+ variant: "outlined",
1830
+ css: {
1831
+ border: "1px solid $$buttonBorderColor"
1832
+ }
1833
+ }
1834
+ ],
1826
1835
  defaultVariants: {
1827
1836
  variant: "contained",
1828
1837
  color: "brand",
package/dist/index.mjs CHANGED
@@ -1708,6 +1708,15 @@ var ButtonStyled = styled(ButtonRadix, {
1708
1708
  }
1709
1709
  }
1710
1710
  },
1711
+ compoundVariants: [
1712
+ {
1713
+ color: "neutral",
1714
+ variant: "outlined",
1715
+ css: {
1716
+ border: "1px solid $$buttonBorderColor"
1717
+ }
1718
+ }
1719
+ ],
1711
1720
  defaultVariants: {
1712
1721
  variant: "contained",
1713
1722
  color: "brand",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lets-events/react",
3
- "version": "12.2.3",
3
+ "version": "12.2.4",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -280,6 +280,16 @@ export const ButtonStyled = styled(ButtonRadix, {
280
280
  },
281
281
  },
282
282
 
283
+ compoundVariants: [
284
+ {
285
+ color: "neutral",
286
+ variant: "outlined",
287
+ css: {
288
+ border: "1px solid $$buttonBorderColor",
289
+ },
290
+ },
291
+ ],
292
+
283
293
  defaultVariants: {
284
294
  variant: "contained",
285
295
  color: "brand",