@aurora-ds/components 1.7.8 → 1.7.10
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1137,7 +1137,7 @@ declare class ErrorBoundary extends Component<ErrorBoundaryProps, ErrorBoundaryS
|
|
|
1137
1137
|
static getDerivedStateFromError: (error: Error) => ErrorBoundaryState;
|
|
1138
1138
|
componentDidCatch(error: Error, info: ErrorInfo): void;
|
|
1139
1139
|
private reset;
|
|
1140
|
-
render(): string | number | bigint | boolean |
|
|
1140
|
+
render(): string | number | bigint | boolean | Iterable<react.ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<react.ReactNode> | null | undefined> | react_jsx_runtime.JSX.Element | null | undefined;
|
|
1141
1141
|
}
|
|
1142
1142
|
|
|
1143
1143
|
type DefaultErrorFallbackProps = {
|
|
@@ -2402,7 +2402,7 @@ type DrawerFooterProps = Omit<BoxProps, 'aria-label' | 'aria-labelledby' | 'aria
|
|
|
2402
2402
|
type DrawerItemIcon = ComponentType<SVGProps<SVGSVGElement>>;
|
|
2403
2403
|
type DrawerItemProps = {
|
|
2404
2404
|
/** SVG icon shown in both expanded and collapsed states. */
|
|
2405
|
-
startIcon
|
|
2405
|
+
startIcon?: DrawerItemIcon;
|
|
2406
2406
|
/**
|
|
2407
2407
|
* Text label — visible when expanded, shown as tooltip when collapsed.
|
|
2408
2408
|
* @a11y Recommended — provides the item's accessible name in both expanded and collapsed states.
|