This is an automated email from the ASF dual-hosted git repository.
carlosrovira pushed a change to branch amf_updates
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.
from 1439095 [AMFBinaryData] Added implementation support (and very basic
test) for supporting XML in amf. XML class is not a hard dependency for
javascript, so must be linked in by the application, if being used. XML has
only been tested with a very small example. The bytes do not currently match
swf encoding, but this is due to differences in the XML toString (tab indents
are different) stringification, I believe.
new 416b16d First implementation
new d51bed2 Preparing to re-implement load indicator
new 988c82f Reimplemented LoadIndicator.
new 9e5c43f fix renderers height in list and comboboxes that was having
strange wrap more visible when filtering. Now basic renders use display:block
(just text), while more complex renders use display:flex for better layout.
Also improve examples in TDJ with renders that has more than one line in List
and ComboBox
new ef7a9cf Merge branch 'develop' of
https://github.com/apache/royale-asjs into develop
new d46d60f fix iconbutton and togglebutton icons removed when changed
text at runtime
new 17fa29f jewel button add binding to text and html
new edc384c jewel togglebutton: add selectedText property
new 96f6643 jewel iconbutton: set icon to the left or right position
new a178bee jewel button: add multiline text label bead
new cffe2f5 jewel-button: icon position styles improved
new d53cba6 Merge branch 'develop' into amf_updates
The 8693 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../src/main/royale/ButtonPlayGround.mxml | 20 ++-
.../src/main/royale/ListPlayGround.mxml | 8 +-
.../royale/itemRenderers/IconListItemRenderer.mxml | 2 +-
.../src/main/royale/models/ListsModel.as | 4 +-
.../Basic/src/main/resources/basic-manifest.xml | 1 +
.../royale/org/apache/royale/html/LoadIndicator.as | 58 +++++++++
.../apache/royale/html/beads/DisableLoaderBead.as | 138 +++++++++++++++++++++
.../projects/Jewel/src/main/resources/defaults.css | 14 ++-
.../Jewel/src/main/resources/jewel-manifest.xml | 1 +
.../main/royale/org/apache/royale/jewel/Button.as | 7 +-
.../royale/org/apache/royale/jewel/IconButton.as | 109 ++++++++++++++--
.../org/apache/royale/jewel/IconTextInput.as | 2 +-
.../royale/org/apache/royale/jewel/ToggleButton.as | 34 ++++-
.../{Disabled.as => button/MultilineLabel.as} | 89 ++++++-------
.../controls/textinput/SearchFilterForList.as | 3 +-
.../royale/jewel/itemRenderers/ListItemRenderer.as | 5 +
.../itemRenderers/NavigationLinkItemRenderer.as | 5 +
.../Jewel/src/main/sass/components/_button.sass | 4 +
.../Jewel/src/main/sass/components/_combobox.sass | 2 +-
.../src/main/sass/components/_itemRenderer.sass | 11 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../src/main/resources/defaults.css | 12 +-
.../JewelTheme/src/main/resources/defaults.css | 12 +-
.../src/main/sass/components-primary/_button.sass | 6 +-
.../sass/components-primary/_togglebutton.sass | 6 +-
47 files changed, 686 insertions(+), 143 deletions(-)
create mode 100644
frameworks/projects/Basic/src/main/royale/org/apache/royale/html/LoadIndicator.as
create mode 100644
frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/DisableLoaderBead.as
copy
frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/{Disabled.as
=> button/MultilineLabel.as} (61%)