Merge branch 'develop' into feature/dragAndDrop

* develop: (26 commits)
  Update MDL Example - MDL Grid should have at least one MDL GridCell
  Added support for blink alpha and blink color for point cursor. HTML does not 
have the same transparency support as Flash and control over alternating colors 
is important.
  revert this because it isn't needed now that we require the same IValuesImpl 
in the module as is in the main app.
  switch to using IModule to trigger module output
  Forgot import
  Added change event on CheckBox Fixed RadioButton too
  This should work better with MXML
  Forgot to remove this line.
  Setting checked state manually now works
  maven build for ModuleExample.  Module artifacts are not copied into the 
MainApp (yet)
  initial module example
  initialize modules
  UIModule and UIModuleLoader
  FLEX-35350 - Add missing overrides of methods related to item renderers - Use 
in all places element instead positioner
  Fix typo in import of KeyboardEvent
  FLEX-35350 - Make HTML element "table" as main element of MDL Table component 
which allows to add bead to it instead of "tbody" - TableCell and TableColumnt 
now extends existing classes in Basic module - accordingly TableCell and 
TableHeader
  Fix typo in comments of MDL CardInner
  Cleaned up HTML components
  try this price if we can't get other price data
  fx:Style blocks in MXML weren't working.  How did they ever work?
  ...


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/2443273b
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/2443273b
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/2443273b

Branch: refs/heads/develop
Commit: 2443273b691c62df76f29dd05d68da88f7f7e88e
Parents: bdc6246 8b10930
Author: Peter Ent <[email protected]>
Authored: Mon Aug 21 10:41:46 2017 +0200
Committer: Peter Ent <[email protected]>
Committed: Mon Aug 21 10:41:46 2017 +0200

----------------------------------------------------------------------
 examples/build.xml                              |   3 +
 .../src/main/flex/models/MyModel.as             |   2 +
 .../flexjs/MDLExample/src/main/flex/Badges.mxml |  53 +++--
 .../MDLExample/src/main/flex/Buttons.mxml       | 176 +++++++-------
 .../flexjs/MDLExample/src/main/flex/Chips.mxml  |  19 +-
 .../MDLExample/src/main/flex/Dialogs.mxml       |  14 +-
 .../MDLExample/src/main/flex/DropDownList.mxml  |   5 +-
 .../MDLExample/src/main/flex/Footers.mxml       |  10 +-
 .../flexjs/MDLExample/src/main/flex/Grids.mxml  |   5 -
 .../flexjs/MDLExample/src/main/flex/Icons.mxml  |  58 ++---
 .../flexjs/MDLExample/src/main/flex/Lists.mxml  | 171 +++++---------
 .../flexjs/MDLExample/src/main/flex/Menus.mxml  |  37 +--
 .../MDLExample/src/main/flex/Sliders.mxml       |  11 +-
 .../MDLExample/src/main/flex/Snackbar.mxml      |  13 +-
 .../flexjs/MDLExample/src/main/flex/Tables.mxml | 123 +++++-----
 .../flexjs/MDLExample/src/main/flex/Tabs.mxml   |   4 +-
 .../MDLExample/src/main/flex/TextFields.mxml    | 116 ++++-----
 .../MDLExample/src/main/flex/Toggles.mxml       |  90 +++----
 examples/flexjs/ModuleExample/MainApp/build.xml |  55 +++++
 examples/flexjs/ModuleExample/MainApp/pom.xml   |  60 +++++
 .../src/main/config/compile-app-config.xml      |  24 ++
 .../MainApp/src/main/flex/MainApp.mxml          |  34 +++
 examples/flexjs/ModuleExample/Module/build.xml  |  76 ++++++
 examples/flexjs/ModuleExample/Module/pom.xml    |  60 +++++
 .../src/main/config/compile-app-config.xml      |  26 +++
 .../Module/src/main/flex/Module.mxml            |  30 +++
 examples/flexjs/ModuleExample/build.xml         |  95 ++++++++
 examples/flexjs/ModuleExample/pom.xml           | 162 +++++++++++++
 examples/flexjs/pom.xml                         |   1 +
 .../main/flex/org/apache/flex/html/UIModule.as  | 140 +++++++++++
 .../flex/org/apache/flex/html/UIModuleLoader.as | 233 +++++++++++++++++++
 .../html/beads/DispatchInputFinishedBead.as     |   7 +-
 .../beads/EasyDataProviderChangeNotifier.as     | 108 +++++++++
 .../beads/SimpleDataProviderChangeNotifier.as   |  90 -------
 .../Basic/src/main/resources/basic-manifest.xml |   5 +-
 .../projects/Core/src/main/flex/CoreClasses.as  |   1 +
 .../main/flex/org/apache/flex/core/IModule.as   |  34 +++
 .../org/apache/flex/core/SimpleCSSValuesImpl.as |   5 +-
 .../src/main/flex/org/apache/flex/html/A.as     |   6 +-
 .../src/main/flex/org/apache/flex/html/H1.as    |   6 +-
 .../src/main/flex/org/apache/flex/html/H2.as    |   6 +-
 .../src/main/flex/org/apache/flex/html/H3.as    |   6 +-
 .../src/main/flex/org/apache/flex/html/H4.as    |   6 +-
 .../src/main/flex/org/apache/flex/html/H5.as    |   6 +-
 .../src/main/flex/org/apache/flex/html/H6.as    |   6 +-
 .../src/main/flex/org/apache/flex/html/I.as     |   6 +-
 .../src/main/flex/org/apache/flex/html/Li.as    |   7 +-
 .../main/flex/org/apache/flex/html/Select.as    |   3 +-
 .../src/main/flex/org/apache/flex/html/Ul.as    |   5 +-
 .../main/flex/org/apache/flex/mdl/CheckBox.as   |  60 ++++-
 .../flex/org/apache/flex/mdl/RadioButton.as     |  15 +-
 .../src/main/flex/org/apache/flex/mdl/TBody.as  |  67 ++++++
 .../src/main/flex/org/apache/flex/mdl/Table.as  | 136 +++++++----
 .../main/flex/org/apache/flex/mdl/TableCell.as  |  14 +-
 .../flex/org/apache/flex/mdl/TableColumn.as     |  14 +-
 .../apache/flex/mdl/supportClasses/CardInner.as |   2 +-
 .../src/main/resources/defaults.css             |  10 +-
 .../projects/TLF/src/main/flex/TLFClasses.as    |   1 +
 .../beads/DispatchTLFKeyboardEventBead.as       |  13 +-
 .../textLayout/container/ContainerController.as |  38 ++-
 .../flex/textLayout/edit/SelectionFormat.as     |  32 ++-
 .../apache/flex/text/engine/ElementFormat.as    |  10 +-
 .../flex/org/apache/flex/text/html/TextLine.as  |   4 +-
 manualtests/TLFEditTestFlexJS/src/TLFEditor.as  |   4 +
 64 files changed, 1955 insertions(+), 684 deletions(-)
----------------------------------------------------------------------


Reply via email to