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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 758896d84d TableLayout placeholder
758896d84d is described below

commit 758896d84df06a179d8b1974b61e12b18dbf421c
Author: Harbs <[email protected]>
AuthorDate: Mon Feb 23 18:44:42 2026 +0200

    TableLayout placeholder
---
 .../Style/src/main/resources/basic-manifest.xml    |  2 +
 .../apache/royale/style/stylebeads/TableLayout.as  | 49 ++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/frameworks/projects/Style/src/main/resources/basic-manifest.xml 
b/frameworks/projects/Style/src/main/resources/basic-manifest.xml
index b36db0f27a..adeff54dd9 100644
--- a/frameworks/projects/Style/src/main/resources/basic-manifest.xml
+++ b/frameworks/projects/Style/src/main/resources/basic-manifest.xml
@@ -55,6 +55,8 @@
   <component id="TextShadow" 
class="org.apache.royale.style.stylebeads.effects.TextShadow"/>
   <component id="FilterEffect" 
class="org.apache.royale.style.stylebeads.effects.FilterEffect"/>
   <component id="BackdropFilter" 
class="org.apache.royale.style.stylebeads.effects.BackdropFilter"/>
+  
+  <component id="TableLayout" 
class="org.apache.royale.style.stylebeads.TableLayout"/>
   -->
 
 
diff --git 
a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/TableLayout.as
 
b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/TableLayout.as
new file mode 100644
index 0000000000..4e66db0bc2
--- /dev/null
+++ 
b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/TableLayout.as
@@ -0,0 +1,49 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  Licensed to the Apache Software Foundation (ASF) under one or more
+//  contributor license agreements.  See the NOTICE file distributed with
+//  this work for additional information regarding copyright ownership.
+//  The ASF licenses this file to You under the Apache License, Version 2.0
+//  (the "License"); you may not use this file except in compliance with
+//  the License.  You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+//  Unless required by applicable law or agreed to in writing, software
+//  distributed under the License is distributed on an "AS IS" BASIS,
+//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//  See the License for the specific language governing permissions and
+//  limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+package org.apache.royale.style.stylebeads
+{
+       public class TableLayout extends StyleBeadBase
+       {
+               public function TableLayout()
+               {
+                       super();
+               }
+               /**
+                * TODO: Figure this out
+                */
+               // https://tailwindcss.com/docs/border-collapse
+               public var borderCollapse:String;
+               // https://tailwindcss.com/docs/border-spacing
+               public var borderSpacing:String;
+               // https://tailwindcss.com/docs/caption-side
+               public var captionSide:String;
+               // https://tailwindcss.com/docs/table-layout
+               public var tableLayout:String;
+
+               override public function get selectors():Array
+               {
+                       return [];
+               }
+
+               override public function get rules():Array
+               {
+                       return [];
+               }
+       }
+}
\ No newline at end of file

Reply via email to