@admin-layout/gluestack-ui-mobile 7.3.8-alpha.8 → 8.5.2-alpha.0

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.
Files changed (96) hide show
  1. package/CHANGELOG.md +1 -17
  2. package/lib/components/ApplicationErrorFillWrapper.js +1 -1
  3. package/lib/components/ApplicationErrorFillWrapper.js.map +1 -1
  4. package/lib/components/ApplicationErrorHandler.js +3 -3
  5. package/lib/components/ApplicationErrorHandler.js.map +1 -1
  6. package/lib/components/AuthWrapper.d.ts +1 -0
  7. package/lib/components/AuthWrapper.js +19 -0
  8. package/lib/components/AuthWrapper.js.map +1 -0
  9. package/lib/components/ErrorBounday.js.map +1 -1
  10. package/lib/components/Fallback.js +1 -2
  11. package/lib/components/Fallback.js.map +1 -1
  12. package/lib/components/Layout/components/BasicLayout.js +3 -1
  13. package/lib/components/Layout/components/BasicLayout.js.map +1 -1
  14. package/lib/components/Layout/components/BottomTabBar.d.ts +1 -0
  15. package/lib/components/Layout/components/BottomTabBar.js +11 -24
  16. package/lib/components/Layout/components/BottomTabBar.js.map +1 -1
  17. package/lib/components/Layout/components/Drawer.d.ts +1 -0
  18. package/lib/components/Layout/components/Drawer.js +101 -117
  19. package/lib/components/Layout/components/Drawer.js.map +1 -1
  20. package/lib/components/Layout/components/Header.d.ts +2 -1
  21. package/lib/components/Layout/components/Header.js +5 -4
  22. package/lib/components/Layout/components/Header.js.map +1 -1
  23. package/lib/components/Layout/components/SettingDrawer/LayoutButton.js +26 -19
  24. package/lib/components/Layout/components/SettingDrawer/LayoutButton.js.map +1 -1
  25. package/lib/components/Layout/components/SettingDrawer/ThemeColorButton.js +5 -13
  26. package/lib/components/Layout/components/SettingDrawer/ThemeColorButton.js.map +1 -1
  27. package/lib/components/Layout/components/SideBar.js +2 -2
  28. package/lib/components/Layout/components/SideBar.js.map +1 -1
  29. package/lib/components/Layout/components/util.js.map +1 -1
  30. package/lib/components/Layout/compute.js +51 -52
  31. package/lib/components/Layout/compute.js.map +1 -1
  32. package/lib/components/NavigationComponent.js +24 -31
  33. package/lib/components/NavigationComponent.js.map +1 -1
  34. package/lib/components/ToastAlert.js +1 -1
  35. package/lib/components/ToastAlert.js.map +1 -1
  36. package/lib/components/UnAuthenticatedComponent.d.ts +3 -0
  37. package/lib/components/UnAuthenticatedComponent.js +16 -0
  38. package/lib/components/UnAuthenticatedComponent.js.map +1 -0
  39. package/lib/components/index.d.ts +1 -0
  40. package/lib/components/index.js +1 -0
  41. package/lib/components/index.js.map +1 -1
  42. package/lib/components/with-interactions-managed.js +2 -2
  43. package/lib/components/with-interactions-managed.js.map +1 -1
  44. package/lib/config/config.js +2 -2
  45. package/lib/config/config.js.map +1 -1
  46. package/lib/config/i18next.js +1 -2
  47. package/lib/config/i18next.js.map +1 -1
  48. package/lib/containers/layout/BasicLayout.d.ts +2 -2
  49. package/lib/containers/layout/BasicLayout.js +3 -3
  50. package/lib/containers/layout/BasicLayout.js.map +1 -1
  51. package/lib/containers/layout/DrawerBottomNavigationConfig.d.ts +2 -2
  52. package/lib/containers/layout/DrawerBottomNavigationConfig.js +2 -2
  53. package/lib/containers/layout/DrawerBottomNavigationConfig.js.map +1 -1
  54. package/lib/containers/layout/DrawerConfig.d.ts +1 -1
  55. package/lib/containers/layout/DrawerConfig.js +1 -1
  56. package/lib/containers/layout/DrawerConfig.js.map +1 -1
  57. package/lib/containers/layout/Lifecycle.js +2 -14
  58. package/lib/containers/layout/Lifecycle.js.map +1 -1
  59. package/lib/containers/layout/ProLayout.js +4 -5
  60. package/lib/containers/layout/ProLayout.js.map +1 -1
  61. package/lib/hooks/use-after-interactions.d.ts +0 -1
  62. package/lib/hooks/use-after-interactions.js +1 -1
  63. package/lib/hooks/use-after-interactions.js.map +1 -1
  64. package/lib/hooks/useIsReady.js.map +1 -1
  65. package/lib/hooks/useLayoutSetting/index.js +16 -14
  66. package/lib/hooks/useLayoutSetting/index.js.map +1 -1
  67. package/lib/index.d.ts +3 -1
  68. package/lib/index.js +3 -1
  69. package/lib/index.js.map +1 -1
  70. package/lib/layout.json +153 -0
  71. package/lib/redux/settings.d.ts +8 -8
  72. package/lib/redux/settings.js +8 -2
  73. package/lib/redux/settings.js.map +1 -1
  74. package/lib/utils/generateAppNavigations.d.mts +43 -0
  75. package/lib/utils/generateAppNavigations.mjs +952 -0
  76. package/lib/utils/generateAppNavigations.mjs.map +1 -0
  77. package/lib/utils/getReplacedRouteConfig.d.ts +11 -0
  78. package/lib/utils/getReplacedRouteConfig.js +276 -0
  79. package/lib/utils/getReplacedRouteConfig.js.map +1 -0
  80. package/lib/utils/getReplacedRouteConfig.mjs +265 -0
  81. package/lib/utils/routeConfigKeyReplace.js +17 -19
  82. package/lib/utils/routeConfigKeyReplace.js.map +1 -1
  83. package/package.json +7 -5
  84. package/src/components/ApplicationErrorHandler.tsx +26 -21
  85. package/src/components/AuthWrapper.tsx +19 -0
  86. package/src/components/Layout/components/BottomTabBar.tsx +2 -0
  87. package/src/components/Layout/components/Drawer.tsx +4 -1
  88. package/src/components/Layout/components/Header.tsx +7 -3
  89. package/src/components/UnAuthenticatedComponent.tsx +38 -0
  90. package/src/components/index.ts +1 -0
  91. package/src/index.ts +4 -1
  92. package/src/layout.json +153 -0
  93. package/src/utils/generateAppNavigations.mjs +984 -0
  94. package/src/utils/getReplacedRouteConfig.mjs_ok +317 -0
  95. package/src/utils/getReplacedRouteConfig.ts +330 -0
  96. package/tsconfig.json +4 -1
@@ -0,0 +1,153 @@
1
+ {
2
+ "side":{
3
+ "/":{
4
+ "key":"/",
5
+ "position": "MIDDLE",
6
+ "exact": false,
7
+ "container": {},
8
+ "name": "MainStack",
9
+ "props": {
10
+ "initialRouteName": "MainStack.Layout",
11
+ "screenOptions": {
12
+ "headerShown": false
13
+ }
14
+ },
15
+ "path": "/",
16
+ "_pathPrefix": ""
17
+ },
18
+ "/main_drawer":{
19
+ "key":"main_drawer",
20
+ "position": "MIDDLE",
21
+ "exact": false,
22
+ "container": {},
23
+ "name":"Layout",
24
+ "props":{
25
+ "initialRouteName":"MainStack.Layout.Home",
26
+ "screenOptions":{
27
+ "headerShown":true,
28
+ "swipeEnabled":true
29
+ }
30
+ },
31
+ "path":"/main_drawer",
32
+ "_pathPrefix": "/"
33
+ }
34
+ },
35
+ "bottom":{
36
+ "/":{
37
+ "key":"/",
38
+ "position": "MIDDLE",
39
+ "exact": false,
40
+ "container": {},
41
+ "name": "MainStack",
42
+ "props": {
43
+ "initialRouteName": "MainStack.Layout",
44
+ "screenOptions": {
45
+ "headerShown": false
46
+ }
47
+ },
48
+ "path": "/",
49
+ "_pathPrefix": ""
50
+ },
51
+ "/bottom_tab":{
52
+ "key":"bottom_tab",
53
+ "position": "MIDDLE",
54
+ "exact": false,
55
+ "container": {},
56
+ "name":"Layout",
57
+ "props":{
58
+ "initialRouteName":"MainStack.Layout.Home",
59
+ "screenOptions":{
60
+ "headerShown": true,
61
+ "title": "Home",
62
+ "headerTitle": "Home"
63
+ }
64
+ },
65
+ "path":"/bottom_tab",
66
+ "_pathPrefix": "/"
67
+ }
68
+ },
69
+ "host-bottom":{
70
+ "/":{
71
+ "key":"/",
72
+ "position": "MIDDLE",
73
+ "exact": false,
74
+ "container": {},
75
+ "name": "MainStack",
76
+ "props": {
77
+ "initialRouteName": "MainStack.Layout",
78
+ "screenOptions": {
79
+ "headerShown": false
80
+ }
81
+ },
82
+ "path": "/",
83
+ "_pathPrefix": ""
84
+ },
85
+ "/host_tab":{
86
+ "key":"host_tab",
87
+ "position": "MIDDLE",
88
+ "exact": false,
89
+ "container": {},
90
+ "name":"Layout",
91
+ "props":{
92
+ "initialRouteName":"MainStack.Layout.Home",
93
+ "screenOptions":{
94
+ "headerShown": true,
95
+ "title": "Home",
96
+ "headerTitle": "Home"
97
+ }
98
+ },
99
+ "path":"/host_tab",
100
+ "_pathPrefix": "/"
101
+ }
102
+ },
103
+ "mixSide":{
104
+ "/":{
105
+ "key":"/",
106
+ "position": "MIDDLE",
107
+ "exact": false,
108
+ "container": {},
109
+ "name": "MainStack",
110
+ "props": {
111
+ "initialRouteName": "MainStack.Layout",
112
+ "screenOptions": {
113
+ "headerShown": false
114
+ }
115
+ },
116
+ "path": "/",
117
+ "_pathPrefix": ""
118
+ },
119
+ "/main_drawer":{
120
+ "key":"main_drawer",
121
+ "position": "MIDDLE",
122
+ "exact": false,
123
+ "container": {},
124
+ "name":"Layout",
125
+ "props":{
126
+ "initialRouteName":"MainStack.Layout",
127
+ "screenOptions":{
128
+ "headerShown":true,
129
+ "swipeEnabled":true
130
+ }
131
+ },
132
+ "path":"/main_drawer",
133
+ "_pathPrefix": "/"
134
+ },
135
+ "/main_drawer/bottom_tab":{
136
+ "key":"bottom_tab",
137
+ "position": "MIDDLE",
138
+ "exact": false,
139
+ "container": {},
140
+ "name":"MainBottomTab",
141
+ "props":{
142
+ "initialRouteName":"MainStack.Layout.Home",
143
+ "screenOptions":{
144
+ "headerShown": false,
145
+ "title": "Home",
146
+ "headerTitle": "Home"
147
+ }
148
+ },
149
+ "path":"/bottom_tab",
150
+ "_pathPrefix": "/"
151
+ }
152
+ }
153
+ }