| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- Copyright (c) 2010, Yahoo! Inc. All rights reserved.
- Code licensed under the BSD License:
- http://developer.yahoo.com/yui/license.html
- version: 3.4.0
- build: nightly
- */
- YUI.add('panel', function(Y) {
-
- /**
- * Provides a Panel widget, a widget that mimics the functionality of a regular OS window.
- * Comes with Standard Module support, XY Positioning, Alignment Support, Stack (z-index) support,
- * modality, auto-focus and auto-hide functionality, and header/footer button support.
- *
- * @module panel
- */
-
- /**
- * A basic Panel Widget, which can be positioned based on Page XY co-ordinates and is stackable (z-index support).
- * It also provides alignment and centering support and uses a standard module format for it's content, with header,
- * body and footer section support. It can be made modal, and has functionality to hide and focus on different events.
- * The header and footer sections can be modified to allow for button support.
- *
- * @class Panel
- * @constructor
- * @extends Widget
- * @uses WidgetStdMod
- * @uses WidgetPosition
- * @uses WidgetStack
- * @uses WidgetPositionAlign
- * @uses WidgetPositionConstrain
- * @uses WidgetModality
- * @uses WidgetAutohide
- * @uses WidgetButtons
- * @param {Object} object The user configuration for the instance.
- */
- Y.Panel = Y.Base.create("panel", Y.Widget, [Y.WidgetStdMod, Y.WidgetPosition, Y.WidgetStack, Y.WidgetPositionAlign, Y.WidgetPositionConstrain, Y.WidgetModality, Y.WidgetAutohide, Y.WidgetButtons]);
-
-
- }, '3.4.0' ,{requires:['widget', 'widget-stdmod', 'widget-position', 'widget-stack', 'widget-position-align', 'widget-position-constrain', 'widget-modality', 'widget-autohide', 'widget-buttons']});
|