unicorn-demo-app 7.44.0-snapshot.7216 → 7.44.0-snapshot.7227
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/screens/MenuStructure.js +10 -9
package/package.json
CHANGED
|
@@ -86,7 +86,7 @@ export const navigationData = {
|
|
|
86
86
|
screens: [
|
|
87
87
|
{title: 'Action Sheet', tags: 'action sheet cross-platform', screen: 'unicorn.components.ActionSheetScreen'},
|
|
88
88
|
{title: 'Dialog', tags: 'dialog modal popup alert', screen: 'unicorn.components.DialogScreen'},
|
|
89
|
-
{title: 'Feature Highlight', tags: '
|
|
89
|
+
{title: 'Feature Highlight', tags: 'feature overlay', screen: 'unicorn.components.FeatureHighlightScreen'},
|
|
90
90
|
{title: 'Floating Button', tags: 'floating button', screen: 'unicorn.components.FloatingButtonScreen'},
|
|
91
91
|
{title: 'Hint', tags: 'hints tooltip', screen: 'unicorn.components.HintsScreen'},
|
|
92
92
|
{title: 'Toast', tags: 'toast top bottom snackbar', screen: 'unicorn.components.ToastsScreen'}
|
|
@@ -122,10 +122,10 @@ export const navigationData = {
|
|
|
122
122
|
{title: 'LoadingScreen', tags: 'loading screen', screen: 'unicorn.screens.LoadingScreen'},
|
|
123
123
|
{title: 'Modal', tags: 'modal topbar screen', screen: 'unicorn.screens.ModalScreen'},
|
|
124
124
|
{title: 'StateScreen', tags: 'empty state screen', screen: 'unicorn.screens.EmptyStateScreen'},
|
|
125
|
-
{title: 'TabController', tags: 'tabbar controller', screen: 'unicorn.components.TabControllerScreen'},
|
|
125
|
+
{title: 'TabController', tags: 'tabbar controller native', screen: 'unicorn.components.TabControllerScreen'},
|
|
126
126
|
{
|
|
127
127
|
title: 'TabControllerWithStickyHeader',
|
|
128
|
-
tags: 'tabbar controller sticky header',
|
|
128
|
+
tags: 'tabbar controller native sticky header',
|
|
129
129
|
screen: 'unicorn.components.TabControllerWithStickyHeaderScreen'
|
|
130
130
|
},
|
|
131
131
|
{title: 'Timeline', tags: 'timeline', screen: 'unicorn.components.TimelineScreen'},
|
|
@@ -153,28 +153,28 @@ export const navigationData = {
|
|
|
153
153
|
screens: [
|
|
154
154
|
{
|
|
155
155
|
title: 'KeyboardAwareScrollView',
|
|
156
|
-
tags: '
|
|
156
|
+
tags: 'KeyboardAwareScrollView',
|
|
157
157
|
screen: 'unicorn.components.KeyboardAwareScrollViewScreen'
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
title: 'Dynamic Fonts',
|
|
161
|
-
tags: '
|
|
161
|
+
tags: 'dynamic fonts load download',
|
|
162
162
|
screen: 'unicorn.nativeComponents.DynamicFontsScreen'
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
title: 'Highlight Overlay',
|
|
166
|
-
tags: 'native
|
|
166
|
+
tags: 'native overlay',
|
|
167
167
|
screen: 'unicorn.nativeComponents.HighlightOverlayViewScreen'
|
|
168
168
|
},
|
|
169
169
|
{title: 'SafeArea Spacer', tags: 'native safe area', screen: 'unicorn.nativeComponents.SafeAreaSpacerViewScreen'},
|
|
170
170
|
{
|
|
171
171
|
title: 'KeyboardTracking (iOS)',
|
|
172
|
-
tags: '
|
|
172
|
+
tags: 'KeyboardTracking',
|
|
173
173
|
screen: 'unicorn.nativeComponents.KeyboardTrackingViewScreen'
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
176
|
title: 'KeyboardAccessoryView',
|
|
177
|
-
tags: '
|
|
177
|
+
tags: 'KeyboardInput',
|
|
178
178
|
screen: 'unicorn.nativeComponents.KeyboardAccessoryViewScreen'
|
|
179
179
|
}
|
|
180
180
|
]
|
|
@@ -200,7 +200,8 @@ export const navigationData = {
|
|
|
200
200
|
screens: [
|
|
201
201
|
{title: 'Calendar', tags: 'calendar', screen: 'unicorn.components.IncubatorCalendarScreen'},
|
|
202
202
|
{title: 'ChipsInput', tags: 'chips input', screen: 'unicorn.components.ChipsInputScreen'},
|
|
203
|
-
{title: 'Native TouchableOpacity', tags: 'native
|
|
203
|
+
{title: 'Native TouchableOpacity', tags: 'touchable native', screen: 'unicorn.incubator.TouchableOpacityScreen'},
|
|
204
|
+
{title: 'Dialog (New)', tags: 'dialog modal popup alert', screen: 'unicorn.incubator.IncubatorDialogScreen'},
|
|
204
205
|
{title: 'Toast (New)', tags: 'toast', screen: 'unicorn.components.IncubatorToastScreen'},
|
|
205
206
|
{
|
|
206
207
|
title: 'ExpandableOverlay',
|