@vygruppen/spor-react 13.2.0 → 13.2.1
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 +3 -4
- package/CHANGELOG.md +13 -0
- package/dist/index.cjs +145 -83
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.mjs +145 -83
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/alert/Alert.tsx +42 -1
- package/src/input/Field.tsx +4 -1
- package/src/input/NumericStepper.tsx +6 -1
- package/src/theme/recipes/badge.ts +19 -3
- package/src/theme/recipes/pressable-card.ts +3 -3
- package/src/theme/slot-recipes/numeric-stepper.ts +3 -2
package/dist/index.d.cts
CHANGED
|
@@ -877,12 +877,12 @@ declare const pressableCardRecipe: _chakra_ui_react.RecipeDefinition<{
|
|
|
877
877
|
accent: {
|
|
878
878
|
boxShadow: "0px 1px 3px 0px var(--shadow-color)";
|
|
879
879
|
shadowColor: "surface.disabled";
|
|
880
|
-
background: "surface.
|
|
880
|
+
background: "surface.accent";
|
|
881
881
|
_hover: {
|
|
882
|
-
background: "surface.
|
|
882
|
+
background: "surface.accent.hover";
|
|
883
883
|
boxShadow: "0px 2px 6px 0px var(--shadow-color)";
|
|
884
884
|
_active: {
|
|
885
|
-
background: "surface.
|
|
885
|
+
background: "surface.accent.active";
|
|
886
886
|
boxShadow: "none";
|
|
887
887
|
};
|
|
888
888
|
};
|
|
@@ -1132,6 +1132,7 @@ type FieldBaseProps = {
|
|
|
1132
1132
|
floatingLabel?: boolean;
|
|
1133
1133
|
shouldFloat?: boolean;
|
|
1134
1134
|
labelAsChild?: boolean;
|
|
1135
|
+
gap?: string | number;
|
|
1135
1136
|
};
|
|
1136
1137
|
type FieldProps = Omit<Field$1.RootProps, "label" | "onChange" | "onBlur"> & React$1.PropsWithChildren<FieldVariantProps> & FieldBaseProps;
|
|
1137
1138
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -877,12 +877,12 @@ declare const pressableCardRecipe: _chakra_ui_react.RecipeDefinition<{
|
|
|
877
877
|
accent: {
|
|
878
878
|
boxShadow: "0px 1px 3px 0px var(--shadow-color)";
|
|
879
879
|
shadowColor: "surface.disabled";
|
|
880
|
-
background: "surface.
|
|
880
|
+
background: "surface.accent";
|
|
881
881
|
_hover: {
|
|
882
|
-
background: "surface.
|
|
882
|
+
background: "surface.accent.hover";
|
|
883
883
|
boxShadow: "0px 2px 6px 0px var(--shadow-color)";
|
|
884
884
|
_active: {
|
|
885
|
-
background: "surface.
|
|
885
|
+
background: "surface.accent.active";
|
|
886
886
|
boxShadow: "none";
|
|
887
887
|
};
|
|
888
888
|
};
|
|
@@ -1132,6 +1132,7 @@ type FieldBaseProps = {
|
|
|
1132
1132
|
floatingLabel?: boolean;
|
|
1133
1133
|
shouldFloat?: boolean;
|
|
1134
1134
|
labelAsChild?: boolean;
|
|
1135
|
+
gap?: string | number;
|
|
1135
1136
|
};
|
|
1136
1137
|
type FieldProps = Omit<Field$1.RootProps, "label" | "onChange" | "onBlur"> & React$1.PropsWithChildren<FieldVariantProps> & FieldBaseProps;
|
|
1137
1138
|
/**
|