This is an automated email from the ASF dual-hosted git repository.
aharui pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.
from 4fef0db tour-de-jewel: add all assets to the build when compiling
with VSCode
new 940d332 get Scroller to behave properly. Its children are specified
in a 'viewport' property that needed to be deferred until being added to the
DOM so that the children can measure properly
new 4024603 get RichEditableText to display text
new 17b2d54 text display and editing in RichEditableText
The 3 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:
.../MXRoyale/src/main/resources/defaults.css | 5 +-
.../src/main/royale/mx/containers/TabNavigator.as | 2 +
.../royale/mx/containers/beads/TabNavigatorView.as | 7 +-
.../royale/mx/containers/beads/ViewStackLayout.as | 9 +-
.../src/main/royale/mx/controls/ToggleButtonBar.as | 13 +
.../MXRoyale/src/main/royale/mx/core/Container.as | 6 +
.../src/main/royale/mx/core/UIComponent.as | 2 +
.../src/main/royale/mx/events/FlexEvent.as | 2 +-
.../SparkRoyale/src/main/resources/defaults.css | 13 +-
.../main/royale/spark/components/Application.as | 14 +-
.../royale/spark/components/RichEditableText.as | 393 +++++-----
.../src/main/royale/spark/components/Scroller.as | 37 +-
.../src/main/royale/spark/components/TextArea.as | 33 +-
.../components/beads/SkinnableContainerView.as | 12 +
.../spark/components/supportClasses/GroupBase.as | 10 +-
.../RichEditableTextContainerManager.as | 795 +++++++++++++++++++++
.../components/supportClasses/SkinnableTextBase.as | 93 +--
.../src/main/royale/spark/core/IViewport.as | 220 ++++++
18 files changed, 1410 insertions(+), 256 deletions(-)
create mode 100644
frameworks/projects/SparkRoyale/src/main/royale/spark/components/supportClasses/RichEditableTextContainerManager.as
create mode 100644
frameworks/projects/SparkRoyale/src/main/royale/spark/core/IViewport.as