Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit fbdc069

Browse files
committed
FeathersUICoreNamespace: more components
1 parent 566a0e1 commit fbdc069

File tree

1 file changed

+44
-4
lines changed

1 file changed

+44
-4
lines changed

src/com/feathersui/xml/FeathersUICoreNamespace.hx

Lines changed: 44 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,33 @@ class FeathersUICoreNamespace {
4141
private static final MAPPINGS_FEATHERS_UI = [
4242
// @formatter:off
4343

44-
//components
44+
// components
4545
"Application" => "feathers.controls.Application",
4646
"AssetLoader" => "feathers.controls.AssetLoader",
4747
"Button" => "feathers.controls.Button",
48+
"ButtonBar" => "feathers.controls.ButtonBar",
4849
"Callout" => "feathers.controls.Callout",
4950
"Check" => "feathers.controls.Check",
5051
"ComboBox" => "feathers.controls.ComboBox",
52+
"DatePicker" => "feathers.controls.DatePicker",
53+
"HDividedBox" => "feathers.controls.HDividedBox",
54+
"VDividedBox" => "feathers.controls.VDividedBox",
55+
"Drawer" => "feathers.controls.Drawer",
56+
"Form" => "feathers.controls.Form",
57+
"FormItem" => "feathers.controls.FormItem",
5158
"GridView" => "feathers.controls.GridView",
5259
"GridViewColumn" => "feathers.controls.GridViewColumn",
60+
"GroupListView" => "feathers.controls.GroupListView",
61+
"Header" => "feathers.controls.Header",
62+
"ItemRenderer" => "feathers.controls.ItemRenderer",
5363
"Label" => "feathers.controls.Label",
5464
"LayoutGroup" => "feathers.controls.LayoutGroup",
65+
"LayoutGroupItemRenderer" => "feathers.controls.LayoutGroupItemRenderer",
5566
"ListView" => "feathers.controls.ListView",
67+
"NumericStepper" => "feathers.controls.NumericStepper",
68+
"PageIndicator" => "feathers.controls.PageIndicator",
5669
"Panel" => "feathers.controls.Panel",
70+
"PopUpDatePicker" => "feathers.controls.PopUpDatePicker",
5771
"PopUpListView" => "feathers.controls.PopUpListView",
5872
"HProgressBar" => "feathers.controls.HProgressBar",
5973
"VProgressBar" => "feathers.controls.VProgressBar",
@@ -66,22 +80,48 @@ class FeathersUICoreNamespace {
6680
"VSlider" => "feathers.controls.VSlider",
6781
"StackNavigator" => "feathers.controls.StackNavigator",
6882
"TabBar" => "feathers.controls.TabBar",
83+
"TabNavigator" => "feathers.controls.TabNavigator",
6984
"TextArea" => "feathers.controls.TextArea",
7085
"TextCallout" => "feathers.controls.TextCallout",
7186
"TextInput" => "feathers.controls.TextInput",
7287
"ToggleButton" => "feathers.controls.ToggleButton",
7388
"ToggleSwitch" => "feathers.controls.ToggleSwitch",
89+
"TreeView" => "feathers.controls.TreeView",
7490

75-
//collections
91+
// collections
7692
"ArrayCollection" => "feathers.data.ArrayCollection",
93+
"ArrayHierarchicalCollection" => "feathers.data.ArrayHierarchicalCollection",
94+
"TreeCollection" => "feathers.data.TreeCollection",
95+
"TreeNode" => "feathers.data.TreeNode",
7796

78-
//layouts
97+
// layouts
7998
"AnchorLayout" => "feathers.layout.AnchorLayout",
8099
"AnchorLayoutData" => "feathers.layout.AnchorLayoutData",
81100
"HorizontalLayout" => "feathers.layout.HorizontalLayout",
82101
"HorizontalLayoutData" => "feathers.layout.HorizontalLayoutData",
102+
"HorizontalListLayout" => "feathers.layout.HorizontalListLayout",
103+
"ResponsiveGridLayout" => "feathers.layout.ResponsiveGridLayout",
104+
"ResponsiveGridLayoutData" => "feathers.layout.ResponsiveGridLayoutData",
105+
"TiledRowsLayout" => "feathers.layout.TiledRowsLayout",
106+
"TiledRowsListLayout" => "feathers.layout.TiledRowsListLayout",
107+
"PagedTiledRowsListLayout" => "feathers.layout.PagedTiledRowsListLayout",
83108
"VerticalLayout" => "feathers.layout.VerticalLayout",
84-
"VerticalLayoutData" => "feathers.layout.VerticalLayoutData"
109+
"VerticalLayoutData" => "feathers.layout.VerticalLayoutData",
110+
"VerticalListLayout" => "feathers.layout.VerticalListLayout",
111+
"VerticalListFixedRowLayout" => "feathers.layout.VerticalListFixedRowLayout",
112+
113+
// skins
114+
"CircleSkin" => "feathers.skins.CircleSkin",
115+
"EllipseSkin" => "feathers.skins.EllipseSkin",
116+
"HorizontalLineSkin" => "feathers.skins.HorizontalLineSkin",
117+
"LeftAndRightBorderSkin" => "feathers.skins.LeftAndRightBorderSkin",
118+
"PillSkin" => "feathers.skins.PillSkin",
119+
"RectangleSkin" => "feathers.skins.RectangleSkin",
120+
"TabSkin" => "feathers.skins.TabSkin",
121+
"TopAndBottomBorderSkin" => "feathers.skins.TopAndBottomBorderSkin",
122+
"TriangleSkin" => "feathers.skins.TriangleSkin",
123+
"UnderlineSkin" => "feathers.skins.UnderlineSkin",
124+
"VerticalLineSkin" => "feathers.skins.VerticalLineSkin",
85125

86126
// @formatter:on
87127
];

0 commit comments

Comments
 (0)