forked from liferay/yui3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prettify api doc comments + update README and HISTORY for widget-moda…
…lity, widget-autohide, widget-buttons, widget-position-align, and panel
- Loading branch information
Showing
21 changed files
with
143 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Panel | ||
====== | ||
|
||
3.4.0 - Initial Release | ||
----------------------- | ||
3.4.0PR3 - Initial Release | ||
-------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
Overlay | ||
======= | ||
Panel | ||
===== | ||
|
||
Overlay is a positionable and stackable widget, which also | ||
provides support for the standard module format layout, | ||
with a header, body and footer section. | ||
Panel is a widget that simulates the behavior of an OS window. | ||
It is positionable, stackable, and provides support for the standard | ||
module format layout, with a header, body and footer section. | ||
The header and footer sections can support buttons with specific callback | ||
functions. The panel can be modal, and can be auto-focussed or hidden when | ||
certain UI interactions occur. | ||
|
||
The overlay is built by extending Widget and adding the | ||
WidgetPosition, WidgetStack, WidgetPositionAlign, | ||
WidgetPositionConstrain and WidgetStdMod extensions. | ||
The panel is built by extending Widget and adding the WidgetPosition, | ||
WidgetStack, WidgetPositionAlign, WidgetPositionConstrain, WidgetStdMod, | ||
WidgetModality, WidgetAutohide, and WidgetButtons extensions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
3.4.0PR3 | ||
-------- | ||
|
||
* Changed from a widget plugin to an extension | ||
|
||
3.4.0PR2 - Initial release | ||
-------------------------- |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
WidgetAutohide | ||
============== | ||
|
||
WidgetAutohide is a widget-level extension that provides the ability | ||
to hide the widget (through the hide() method) when certain UI interactions | ||
occur, or certain events are fired. It reveals the "hideOn" attribute that | ||
can be configured by a widget subclass implementing this extension. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
3.4.0PR3 - Initial release | ||
-------------------------- |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
WidgetButtons | ||
============= | ||
|
||
WidgetButtons is a widget-level extension that provides the ability | ||
to add buttons to the header and footer sections of a widget that | ||
implements the WidgetStdMod extension. | ||
|
||
Each button can be configured and execute a callback function when clicked. | ||
WidgetButtons reveals the "buttons" attribute that can be configured | ||
by a widget subclass implementing this extension. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
WidgetModality | ||
============== | ||
|
||
3.4.0PR3 | ||
-------- | ||
|
||
* Changed from a widget plugin to an extension | ||
|
||
3.4.0PR2 - Initial release | ||
-------------------------- |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
WidgetModality | ||
============== | ||
|
||
WidgetModality is a widget-level extension that provides modality | ||
and auto-focus support. It implements two new attributes "modal" | ||
and "focusOn" which can be configured by a widget subclass implementing | ||
this extension. |
Oops, something went wrong.