@vygruppen/spor-react 12.6.1 → 12.6.3
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 +16 -0
- package/dist/index.d.mts +8 -6
- package/dist/index.d.ts +8 -6
- package/dist/index.js +22 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/input/Combobox.tsx +2 -0
- package/src/input/NumericStepper.tsx +4 -5
- package/src/theme/slot-recipes/dialog.ts +7 -1
- package/src/theme/slot-recipes/tabs.ts +5 -0
package/dist/index.mjs
CHANGED
@@ -2661,7 +2661,8 @@ var Combobox = (props) => {
|
|
2661
2661
|
emptyContent,
|
2662
2662
|
inputRef: externalInputRef,
|
2663
2663
|
children,
|
2664
|
-
variant
|
2664
|
+
variant,
|
2665
|
+
...restProps
|
2665
2666
|
} = props;
|
2666
2667
|
const { contains } = useFilter({ sensitivity: "base" });
|
2667
2668
|
const fallbackInputRef = useRef(null);
|
@@ -2709,6 +2710,7 @@ var Combobox = (props) => {
|
|
2709
2710
|
/* @__PURE__ */ jsx(
|
2710
2711
|
Input,
|
2711
2712
|
{
|
2713
|
+
...restProps,
|
2712
2714
|
...styleProps(comboBoxProps),
|
2713
2715
|
"aria-haspopup": "listbox",
|
2714
2716
|
ref: inputRef,
|
@@ -7274,37 +7276,43 @@ var dialogSlotRecipe = defineSlotRecipe({
|
|
7274
7276
|
size: {
|
7275
7277
|
xs: {
|
7276
7278
|
content: {
|
7277
|
-
maxWidth: "sm"
|
7279
|
+
maxWidth: "sm",
|
7280
|
+
height: "auto"
|
7278
7281
|
}
|
7279
7282
|
},
|
7280
7283
|
sm: {
|
7281
7284
|
content: {
|
7282
|
-
maxWidth: "md"
|
7285
|
+
maxWidth: "md",
|
7286
|
+
height: "auto"
|
7283
7287
|
}
|
7284
7288
|
},
|
7285
7289
|
md: {
|
7286
7290
|
content: {
|
7287
|
-
maxWidth: "lg"
|
7291
|
+
maxWidth: "lg",
|
7292
|
+
height: "auto"
|
7288
7293
|
}
|
7289
7294
|
},
|
7290
7295
|
lg: {
|
7291
7296
|
content: {
|
7292
|
-
maxWidth: "2xl"
|
7297
|
+
maxWidth: "2xl",
|
7298
|
+
height: "auto"
|
7293
7299
|
}
|
7294
7300
|
},
|
7295
7301
|
xl: {
|
7296
7302
|
content: {
|
7297
|
-
maxWidth: "4xl"
|
7303
|
+
maxWidth: "4xl",
|
7304
|
+
height: "auto"
|
7298
7305
|
}
|
7299
7306
|
},
|
7300
7307
|
cover: {
|
7301
7308
|
positioner: {
|
7302
|
-
padding: "
|
7309
|
+
padding: "4"
|
7303
7310
|
},
|
7304
7311
|
content: {
|
7305
7312
|
width: "100%",
|
7306
7313
|
height: "100%",
|
7307
|
-
"--dialog-margin": "0"
|
7314
|
+
"--dialog-margin": "0",
|
7315
|
+
margin: "0"
|
7308
7316
|
}
|
7309
7317
|
}
|
7310
7318
|
},
|
@@ -9541,7 +9549,10 @@ var tabsSlotRecipe = defineSlotRecipe({
|
|
9541
9549
|
},
|
9542
9550
|
_selected: {
|
9543
9551
|
backgroundColor: "brand.surface",
|
9544
|
-
color: "brand.text"
|
9552
|
+
color: "brand.text",
|
9553
|
+
_hover: {
|
9554
|
+
outline: "none"
|
9555
|
+
}
|
9545
9556
|
},
|
9546
9557
|
_disabled: {
|
9547
9558
|
backgroundColor: "surface.disabled",
|
@@ -9572,7 +9583,8 @@ var tabsSlotRecipe = defineSlotRecipe({
|
|
9572
9583
|
color: "brand.text",
|
9573
9584
|
_hover: {
|
9574
9585
|
backgroundColor: "brand.surface.hover",
|
9575
|
-
color: "brand.text"
|
9586
|
+
color: "brand.text",
|
9587
|
+
outline: "none"
|
9576
9588
|
}
|
9577
9589
|
}
|
9578
9590
|
}
|