@mmb-digital/design-system-web 0.1.243 → 0.1.245
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 +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -968,7 +968,7 @@ interface ErrorBoxItem {
|
|
|
968
968
|
}
|
|
969
969
|
|
|
970
970
|
interface ErrorBoxProps {
|
|
971
|
-
colorScheme
|
|
971
|
+
colorScheme?: ColorScheme;
|
|
972
972
|
content?: ReactElement | string;
|
|
973
973
|
items?: ErrorBoxItem[];
|
|
974
974
|
tabIndex?: number;
|
|
@@ -2185,6 +2185,7 @@ declare enum PaperShadow {
|
|
|
2185
2185
|
}
|
|
2186
2186
|
|
|
2187
2187
|
interface PaperProps extends DesignSystemBaseProps, SsrProps, AriaAttributes {
|
|
2188
|
+
as?: WebTarget;
|
|
2188
2189
|
children: ReactNode;
|
|
2189
2190
|
className?: string;
|
|
2190
2191
|
id?: string;
|
|
@@ -2271,6 +2272,7 @@ interface ButtonsLayoutProps extends SsrProps {
|
|
|
2271
2272
|
declare const ButtonsLayout: (props: ButtonsLayoutProps) => React__default.JSX.Element;
|
|
2272
2273
|
|
|
2273
2274
|
interface VisuallyHiddenProps extends AriaAttributes {
|
|
2275
|
+
as?: WebTarget;
|
|
2274
2276
|
children: ReactNode;
|
|
2275
2277
|
}
|
|
2276
2278
|
declare const VisuallyHidden: (props: VisuallyHiddenProps) => React__default.JSX.Element;
|