@vygruppen/spor-react 12.6.3 → 12.6.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.
- package/.turbo/turbo-build.log +10 -10
- package/.turbo/turbo-postinstall.log +1 -1
- package/CHANGELOG.md +8 -0
- package/dist/index.d.mts +11 -8
- package/dist/index.d.ts +11 -8
- package/dist/index.js +16 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -17
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/datepicker/DateRangePicker.tsx +1 -1
- package/src/theme/recipes/button.ts +8 -7
- package/src/theme/slot-recipes/field.ts +6 -8
package/dist/index.mjs
CHANGED
@@ -5538,8 +5538,6 @@ var buttonRecipe = defineRecipe({
|
|
5538
5538
|
cursor: "pointer",
|
5539
5539
|
textWrap: "wrap",
|
5540
5540
|
width: "fit-content",
|
5541
|
-
paddingX: 3,
|
5542
|
-
paddingY: 1,
|
5543
5541
|
_disabled: {
|
5544
5542
|
cursor: "not-allowed",
|
5545
5543
|
pointerEvents: "none",
|
@@ -5619,27 +5617,30 @@ var buttonRecipe = defineRecipe({
|
|
5619
5617
|
xs: {
|
5620
5618
|
minHeight: 5,
|
5621
5619
|
minWidth: 5,
|
5622
|
-
|
5623
|
-
fontSize: "xs",
|
5620
|
+
paddingX: 1.5,
|
5621
|
+
fontSize: "mobile.xs",
|
5624
5622
|
fontWeight: "normal"
|
5625
5623
|
},
|
5626
5624
|
sm: {
|
5627
5625
|
minHeight: 6,
|
5628
5626
|
minWidth: 6,
|
5629
|
-
|
5627
|
+
paddingX: 2,
|
5628
|
+
fontSize: "mobile.sm",
|
5630
5629
|
fontWeight: "normal"
|
5631
5630
|
},
|
5632
5631
|
md: {
|
5633
5632
|
minHeight: 7,
|
5634
5633
|
minWidth: 7,
|
5635
|
-
fontSize: "
|
5636
|
-
fontWeight: "bold"
|
5634
|
+
fontSize: "mobile.md",
|
5635
|
+
fontWeight: "bold",
|
5636
|
+
paddingX: 3
|
5637
5637
|
},
|
5638
5638
|
lg: {
|
5639
5639
|
minHeight: 8,
|
5640
5640
|
minWidth: 8,
|
5641
|
-
fontSize: "
|
5642
|
-
fontWeight: "bold"
|
5641
|
+
fontSize: "mobile.md",
|
5642
|
+
fontWeight: "bold",
|
5643
|
+
paddingX: 3
|
5643
5644
|
}
|
5644
5645
|
}
|
5645
5646
|
},
|
@@ -7591,15 +7592,13 @@ var fieldSlotRecipe = defineSlotRecipe({
|
|
7591
7592
|
_after: {
|
7592
7593
|
content: "''",
|
7593
7594
|
position: "absolute",
|
7594
|
-
|
7595
|
+
top: 0,
|
7595
7596
|
left: "1em",
|
7596
|
-
width: 0,
|
7597
|
-
height: 0,
|
7598
|
-
|
7599
|
-
|
7600
|
-
|
7601
|
-
borderBottom: "0.5em solid",
|
7602
|
-
borderColor: "lightRed"
|
7597
|
+
width: "0.5rem",
|
7598
|
+
height: "0.5rem",
|
7599
|
+
backgroundColor: "lightRed",
|
7600
|
+
transform: "translateY(-50%) rotate(45deg)",
|
7601
|
+
pointerEvents: "none"
|
7603
7602
|
}
|
7604
7603
|
}
|
7605
7604
|
}
|