@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
15 lines (14 loc) • 451 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createAlertDialogHandle = createAlertDialogHandle;
var _DialogHandle = require("../dialog/store/DialogHandle");
var _DialogStore = require("../dialog/store/DialogStore");
function createAlertDialogHandle() {
return new _DialogHandle.DialogHandle(new _DialogStore.DialogStore({
modal: true,
disablePointerDismissal: true,
role: 'alertdialog'
}));
}