@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
42 lines • 1.94 kB
JavaScript
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
import React, { forwardRef } from "react";
import { BaseAlert } from "../../base-alert/index.js";
import { LocalAlertCloseButton, } from "../close-button/LocalAlertCloseButton.js";
import { LocalAlertContent, } from "../content/LocalAlertContent.js";
import { LocalAlertHeader, } from "../header/LocalAlertHeader.js";
import { LocalAlertTitle, } from "../title/LocalAlertTitle.js";
/**
* A component for displaying important messages about a certain part of the page.
* @see [📝 Documentation](https://aksel.nav.no/komponenter/core/localalert)
* @see 🏷️ {@link LocalAlertProps}
* @example
* ```jsx
* <LocalAlert status="error">
* <LocalAlert.Header>
* <LocalAlert.Title>Alert title</LocalAlert.Title>
* </LocalAlert.Header>
* <LocalAlert.Content>Content</LocalAlert.Content>
* </LocalAlert>
* ```
*/
export const LocalAlert = forwardRef((_a, forwardedRef) => {
var { status } = _a, restProps = __rest(_a, ["status"]);
return (React.createElement(BaseAlert.Root, Object.assign({ ref: forwardedRef, role: "alert" }, restProps, { type: "strong", global: false, status: status })));
});
LocalAlert.Header = LocalAlertHeader;
LocalAlert.Title = LocalAlertTitle;
LocalAlert.Content = LocalAlertContent;
LocalAlert.CloseButton = LocalAlertCloseButton;
export default LocalAlert;
export { LocalAlertContent, LocalAlertHeader, LocalAlertTitle, LocalAlertCloseButton, };
//# sourceMappingURL=LocalAlertRoot.js.map