@mmb-digital/design-system-web 0.1.327 → 0.1.329
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 +10 -10
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +5 -4
- package/dist/index.esm.js +2 -2
- 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",
|
|
@@ -2260,6 +2260,7 @@ interface TypographyProps extends DesignSystemBaseProps, SsrProps, AriaAttribute
|
|
|
2260
2260
|
id?: string;
|
|
2261
2261
|
onClick?: ((event: MouseEvent<HTMLElement>) => void) | undefined;
|
|
2262
2262
|
role?: AriaRole;
|
|
2263
|
+
tabIndex?: number;
|
|
2263
2264
|
textAlign?: TypographyTextAlign;
|
|
2264
2265
|
variant?: TypographyVariant;
|
|
2265
2266
|
weight?: FontWeight;
|
|
@@ -2350,7 +2351,7 @@ interface PaperProps extends DesignSystemBaseProps, SsrProps, AriaAttributes {
|
|
|
2350
2351
|
shadow?: PaperShadow;
|
|
2351
2352
|
tabIndex?: number;
|
|
2352
2353
|
}
|
|
2353
|
-
declare const Paper:
|
|
2354
|
+
declare const Paper: React__default.ForwardRefExoticComponent<PaperProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2354
2355
|
|
|
2355
2356
|
interface ProgressDefinition {
|
|
2356
2357
|
activeStepIndex: number;
|
|
@@ -2360,7 +2361,7 @@ interface ProgressDefinition {
|
|
|
2360
2361
|
interface ProgressPaperProps extends PaperProps, SsrProps {
|
|
2361
2362
|
progressDefinition: ProgressDefinition;
|
|
2362
2363
|
}
|
|
2363
|
-
declare const ProgressPaper: React__default.
|
|
2364
|
+
declare const ProgressPaper: React__default.ForwardRefExoticComponent<ProgressPaperProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2364
2365
|
|
|
2365
2366
|
declare enum SelectVariant {
|
|
2366
2367
|
inputLike = "inputLike",
|