@mmb-digital/design-system-web 0.1.327 → 0.1.328
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.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -476,7 +476,7 @@ declare enum Spacing {
|
|
|
476
476
|
xxxxl = "xxxxl",
|
|
477
477
|
xxxxxl = "xxxxxl"
|
|
478
478
|
}
|
|
479
|
-
declare const resolveSpacingValue: (theme: Theme$1, spacing: Spacing) => "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "40px" | "48px" | "56px" | "64px"
|
|
479
|
+
declare const resolveSpacingValue: (theme: Theme$1, spacing: Spacing) => "0" | "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "40px" | "48px" | "56px" | "64px";
|
|
480
480
|
|
|
481
481
|
declare enum WhiteSpace {
|
|
482
482
|
inherit = "inherit",
|
|
@@ -1059,7 +1059,7 @@ declare enum BorderRadius {
|
|
|
1059
1059
|
xl = "xl",
|
|
1060
1060
|
full = "full"
|
|
1061
1061
|
}
|
|
1062
|
-
declare const resolveBorderRadiusValue: (theme: Theme$1, borderRadius: BorderRadius) => "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "9999px"
|
|
1062
|
+
declare const resolveBorderRadiusValue: (theme: Theme$1, borderRadius: BorderRadius) => "0" | "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "9999px";
|
|
1063
1063
|
|
|
1064
1064
|
declare enum FlexWrap {
|
|
1065
1065
|
noWrap = "noWrap",
|
|
@@ -2350,7 +2350,7 @@ interface PaperProps extends DesignSystemBaseProps, SsrProps, AriaAttributes {
|
|
|
2350
2350
|
shadow?: PaperShadow;
|
|
2351
2351
|
tabIndex?: number;
|
|
2352
2352
|
}
|
|
2353
|
-
declare const Paper:
|
|
2353
|
+
declare const Paper: React__default.ForwardRefExoticComponent<PaperProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2354
2354
|
|
|
2355
2355
|
interface ProgressDefinition {
|
|
2356
2356
|
activeStepIndex: number;
|
|
@@ -2360,7 +2360,7 @@ interface ProgressDefinition {
|
|
|
2360
2360
|
interface ProgressPaperProps extends PaperProps, SsrProps {
|
|
2361
2361
|
progressDefinition: ProgressDefinition;
|
|
2362
2362
|
}
|
|
2363
|
-
declare const ProgressPaper: React__default.
|
|
2363
|
+
declare const ProgressPaper: React__default.ForwardRefExoticComponent<ProgressPaperProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2364
2364
|
|
|
2365
2365
|
declare enum SelectVariant {
|
|
2366
2366
|
inputLike = "inputLike",
|