@mekari/pixel3-theme 0.3.1-dev.0 → 0.3.2-dev.0
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/dist/index.js +3 -2
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
- package/src/recipes/accordion.ts +3 -2
package/dist/index.js
CHANGED
|
@@ -1744,7 +1744,7 @@ var accordionSlotRecipe = (0, import_dev12.defineSlotRecipe)({
|
|
|
1744
1744
|
headerTitle: {
|
|
1745
1745
|
display: "flex",
|
|
1746
1746
|
alignItems: "center",
|
|
1747
|
-
gap:
|
|
1747
|
+
gap: 3,
|
|
1748
1748
|
width: "100%",
|
|
1749
1749
|
outline: 0,
|
|
1750
1750
|
fontWeight: "semiBold",
|
|
@@ -1752,7 +1752,8 @@ var accordionSlotRecipe = (0, import_dev12.defineSlotRecipe)({
|
|
|
1752
1752
|
color: "dark",
|
|
1753
1753
|
transition: "all 0.2s",
|
|
1754
1754
|
_nextTheme: {
|
|
1755
|
-
color: "text.default"
|
|
1755
|
+
color: "text.default",
|
|
1756
|
+
gap: "sm"
|
|
1756
1757
|
}
|
|
1757
1758
|
},
|
|
1758
1759
|
headerDescription: {
|
package/dist/index.mjs
CHANGED
|
@@ -1718,7 +1718,7 @@ var accordionSlotRecipe = defineSlotRecipe6({
|
|
|
1718
1718
|
headerTitle: {
|
|
1719
1719
|
display: "flex",
|
|
1720
1720
|
alignItems: "center",
|
|
1721
|
-
gap:
|
|
1721
|
+
gap: 3,
|
|
1722
1722
|
width: "100%",
|
|
1723
1723
|
outline: 0,
|
|
1724
1724
|
fontWeight: "semiBold",
|
|
@@ -1726,7 +1726,8 @@ var accordionSlotRecipe = defineSlotRecipe6({
|
|
|
1726
1726
|
color: "dark",
|
|
1727
1727
|
transition: "all 0.2s",
|
|
1728
1728
|
_nextTheme: {
|
|
1729
|
-
color: "text.default"
|
|
1729
|
+
color: "text.default",
|
|
1730
|
+
gap: "sm"
|
|
1730
1731
|
}
|
|
1731
1732
|
},
|
|
1732
1733
|
headerDescription: {
|
package/package.json
CHANGED
package/src/recipes/accordion.ts
CHANGED
|
@@ -22,7 +22,7 @@ export const accordionSlotRecipe = defineSlotRecipe({
|
|
|
22
22
|
headerTitle: {
|
|
23
23
|
display: 'flex',
|
|
24
24
|
alignItems: 'center',
|
|
25
|
-
gap:
|
|
25
|
+
gap: 3,
|
|
26
26
|
width: '100%',
|
|
27
27
|
outline: 0,
|
|
28
28
|
fontWeight: 'semiBold',
|
|
@@ -30,7 +30,8 @@ export const accordionSlotRecipe = defineSlotRecipe({
|
|
|
30
30
|
color: 'dark',
|
|
31
31
|
transition: 'all 0.2s',
|
|
32
32
|
_nextTheme: {
|
|
33
|
-
color: 'text.default'
|
|
33
|
+
color: 'text.default',
|
|
34
|
+
gap: 'sm'
|
|
34
35
|
}
|
|
35
36
|
},
|
|
36
37
|
headerDescription: {
|