@lets-events/react 12.2.3 → 12.2.5
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 +12 -0
- package/dist/index.js +10 -1
- package/dist/index.mjs +10 -1
- package/package.json +1 -1
- package/src/components/Button/styledComponents.ts +11 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @lets-events/react@12.2.
|
|
2
|
+
> @lets-events/react@12.2.5 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
|
+
[32mESM[39m [1mdist\index.mjs [22m[32m379.28 KB[39m
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 229ms
|
|
14
|
+
[32mCJS[39m [1mdist\index.js [22m[32m393.23 KB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 230ms
|
|
16
16
|
[34mDTS[39m Build start
|
|
17
|
-
[32mDTS[39m ⚡️ Build success in
|
|
17
|
+
[32mDTS[39m ⚡️ Build success in 4553ms
|
|
18
18
|
[32mDTS[39m [1mdist\index.d.mts [22m[32m389.04 KB[39m
|
|
19
19
|
[32mDTS[39m [1mdist\index.d.ts [22m[32m389.04 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1814,7 +1814,7 @@ var ButtonStyled = styled(import_themes2.Button, {
|
|
|
1814
1814
|
outlinedBgColor: {
|
|
1815
1815
|
neutral: {},
|
|
1816
1816
|
transparent: {
|
|
1817
|
-
|
|
1817
|
+
$$buttonBgColor: "transparent"
|
|
1818
1818
|
}
|
|
1819
1819
|
},
|
|
1820
1820
|
radii: {
|
|
@@ -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
|
@@ -1699,7 +1699,7 @@ var ButtonStyled = styled(ButtonRadix, {
|
|
|
1699
1699
|
outlinedBgColor: {
|
|
1700
1700
|
neutral: {},
|
|
1701
1701
|
transparent: {
|
|
1702
|
-
|
|
1702
|
+
$$buttonBgColor: "transparent"
|
|
1703
1703
|
}
|
|
1704
1704
|
},
|
|
1705
1705
|
radii: {
|
|
@@ -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
|
@@ -270,7 +270,7 @@ export const ButtonStyled = styled(ButtonRadix, {
|
|
|
270
270
|
outlinedBgColor: {
|
|
271
271
|
neutral: {},
|
|
272
272
|
transparent: {
|
|
273
|
-
|
|
273
|
+
$$buttonBgColor: "transparent",
|
|
274
274
|
},
|
|
275
275
|
},
|
|
276
276
|
radii: {
|
|
@@ -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",
|