@enact/sandstone
Version:
Large-screen/TV support library for Enact, containing a variety of UI components.
45 lines (43 loc) • 1.15 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "Panel", {
enumerable: true,
get: function get() {
return _Panel.Panel;
}
});
Object.defineProperty(exports, "QuickGuidePanels", {
enumerable: true,
get: function get() {
return _QuickGuidePanels.QuickGuidePanels;
}
});
exports["default"] = void 0;
var _QuickGuidePanels = require("./QuickGuidePanels");
var _Panel = require("./Panel");
/**
* Provides a Sandstone styled panels component for full screen size content panel with steps.
*
* Usage:
* ```
* <QuickGuidePanels>
* <QuickGuidePanels.Panel aria-label="This is a description for panel">
* QuickGuidePanelsContent
* </QuickGuidePanels.Panel>
* </QuickGuidePanels>
* ```
* @module sandstone/QuickGuidePanels
* @exports Panel
* @exports QuickGuidePanels
*/
/**
* A shortcut to access {@link sandstone/QuickGuidePanels.Panel}
*
* @name Panel
* @static
* @memberof sandstone/QuickGuidePanels.QuickGuidePanels
*/
_QuickGuidePanels.QuickGuidePanels.Panel = _Panel.Panel;
var _default = exports["default"] = _QuickGuidePanels.QuickGuidePanels;