@vygruppen/spor-react 13.4.5 → 13.4.6
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 +8 -8
- package/.turbo/turbo-postinstall.log +4 -3
- package/CHANGELOG.md +10 -0
- package/dist/index.cjs +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/theme/slot-recipes/select.ts +11 -0
package/dist/index.mjs
CHANGED
|
@@ -11368,6 +11368,12 @@ var selectSlotRecipe = defineSlotRecipe({
|
|
|
11368
11368
|
listStyle: "none",
|
|
11369
11369
|
borderBottomRadius: "sm",
|
|
11370
11370
|
marginTop: -1,
|
|
11371
|
+
"&[data-placement^='top']": {
|
|
11372
|
+
borderTopRadius: "sm",
|
|
11373
|
+
borderBottomRadius: 0,
|
|
11374
|
+
marginTop: 0,
|
|
11375
|
+
marginBottom: -1
|
|
11376
|
+
},
|
|
11371
11377
|
_open: {
|
|
11372
11378
|
animationStyle: "slide-fade-in",
|
|
11373
11379
|
animationDuration: "fast",
|
|
@@ -11436,6 +11442,10 @@ var selectSlotRecipe = defineSlotRecipe({
|
|
|
11436
11442
|
_open: {
|
|
11437
11443
|
borderBottomRadius: 0
|
|
11438
11444
|
},
|
|
11445
|
+
"&:has([data-placement^='top'][data-state='open'])": {
|
|
11446
|
+
borderTopRadius: 0,
|
|
11447
|
+
borderBottomRadius: "sm"
|
|
11448
|
+
},
|
|
11439
11449
|
_invalid: {
|
|
11440
11450
|
outline: "2px solid",
|
|
11441
11451
|
outlineColor: "outline.error"
|