devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
29 lines (28 loc) • 848 B
JavaScript
/**
* DevExtreme (esm/__internal/grids/new/grid_core/accessibility/status.js)
* Version: 25.1.3
* Build date: Wed Jun 25 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import _extends from "@babel/runtime/helpers/esm/extends";
import {
createVNode
} from "inferno";
import {
Component
} from "inferno";
import {
CLASSES as BASE_CLASSES
} from "../const";
const CLASSES = _extends({}, BASE_CLASSES, {
container: "dx-gridbase-a11y-status-container"
});
export class A11yStatusContainer extends Component {
render() {
return createVNode(1, "div", `${CLASSES.container} ${CLASSES.excludeFlexBox}`, this.props.statusText ?? "", 0, {
role: "status"
})
}
}