You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2018/09/05 11:45:25 UTC

[royale-asjs] branch feature/new_merge updated: adding the CSS to SASS files generates CSS corretly and will persist

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch feature/new_merge
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/feature/new_merge by this push:
     new aa452a1  adding the CSS to SASS files generates CSS corretly and will persist
aa452a1 is described below

commit aa452a1517fddc466342ec146c6b66a141b8500a
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Wed Sep 5 13:45:21 2018 +0200

    adding the CSS to SASS files generates CSS corretly and will persist
---
 frameworks/projects/Jewel/src/main/resources/defaults.css | 6 ++++++
 frameworks/projects/Jewel/src/main/sass/_global.sass      | 5 +++++
 2 files changed, 11 insertions(+)

diff --git a/frameworks/projects/Jewel/src/main/resources/defaults.css b/frameworks/projects/Jewel/src/main/resources/defaults.css
index e6aa8da..47d2317 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -83,6 +83,12 @@ j|Image {
   IBeadView: ClassReference("org.apache.royale.jewel.beads.views.ImageView");
 }
 
+j|DataGroup {
+  IBeadLayout: ClassReference("org.apache.royale.jewel.beads.layouts.VerticalLayout");
+  IItemRenderer: ClassReference("org.apache.royale.jewel.itemRenderers.StringItemRenderer");
+  IViewport: ClassReference("org.apache.royale.jewel.supportClasses.Viewport");
+}
+
 j|DataContainer {
   IBeadModel: ClassReference("org.apache.royale.jewel.beads.models.DataProviderModel");
   IBeadView: ClassReference("org.apache.royale.html.beads.DataContainerView");
diff --git a/frameworks/projects/Jewel/src/main/sass/_global.sass b/frameworks/projects/Jewel/src/main/sass/_global.sass
index 8b8c959..66eb5ec 100644
--- a/frameworks/projects/Jewel/src/main/sass/_global.sass
+++ b/frameworks/projects/Jewel/src/main/sass/_global.sass
@@ -93,6 +93,11 @@ j|Image
 //j|Grid
 //	IBeadLayout: ClassReference("org.apache.royale.jewel.beads.layouts.GridLayout")
 
+j|DataGroup
+	IBeadLayout: ClassReference("org.apache.royale.jewel.beads.layouts.VerticalLayout")
+	IItemRenderer: ClassReference("org.apache.royale.jewel.itemRenderers.StringItemRenderer")
+	IViewport: ClassReference("org.apache.royale.jewel.supportClasses.Viewport")
+
 j|DataContainer
 	IBeadModel: ClassReference("org.apache.royale.jewel.beads.models.DataProviderModel")
 	IBeadView:  ClassReference("org.apache.royale.html.beads.DataContainerView")