react-native-inapp-inspector 1.1.14 → 1.1.16
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/README.md +133 -151
- package/dist/commonjs/assets/svgAssets.d.ts +3 -0
- package/dist/commonjs/assets/svgAssets.js +17 -0
- package/dist/commonjs/components/AnalyticsEventCard.d.ts +1 -14
- package/dist/commonjs/components/AnalyticsEventCard.js +34 -51
- package/dist/commonjs/components/AnalyticsGraph.d.ts +2 -6
- package/dist/commonjs/components/AnalyticsGraph.js +8 -8
- package/dist/commonjs/components/AnalyticsTabView.d.ts +15 -0
- package/dist/commonjs/components/AnalyticsTabView.js +157 -0
- package/dist/commonjs/components/AnimatedEntrance.d.ts +1 -1
- package/dist/commonjs/components/AnimatedEntrance.js +2 -2
- package/dist/commonjs/components/ApiDetailView.d.ts +22 -0
- package/dist/commonjs/components/ApiDetailView.js +304 -0
- package/dist/commonjs/components/ApisTabView.d.ts +33 -0
- package/dist/commonjs/components/ApisTabView.js +235 -0
- package/dist/commonjs/components/CodeSnippet.d.ts +1 -5
- package/dist/commonjs/components/CodeSnippet.js +34 -34
- package/dist/commonjs/components/ConsoleLogCard.d.ts +1 -8
- package/dist/commonjs/components/ConsoleLogCard.js +262 -442
- package/dist/commonjs/components/ConsoleLogDetailView.d.ts +9 -0
- package/dist/commonjs/components/ConsoleLogDetailView.js +278 -0
- package/dist/commonjs/components/ConsoleLogsTabView.d.ts +24 -0
- package/dist/commonjs/components/ConsoleLogsTabView.js +354 -0
- package/dist/commonjs/components/CopyButton.d.ts +1 -1
- package/dist/commonjs/components/CopyButton.js +4 -4
- package/dist/commonjs/components/DiffViewer.js +4 -2
- package/dist/commonjs/components/DomainHeader.js +66 -41
- package/dist/commonjs/components/EmptyState.d.ts +2 -2
- package/dist/commonjs/components/EmptyState.js +2 -2
- package/dist/commonjs/components/EndOfListFooter.d.ts +8 -0
- package/dist/commonjs/components/EndOfListFooter.js +89 -0
- package/dist/commonjs/components/ErrorBoundary.d.ts +5 -14
- package/dist/commonjs/components/ErrorBoundary.js +28 -28
- package/dist/commonjs/components/FloatingBubble.d.ts +14 -0
- package/dist/commonjs/components/FloatingBubble.js +75 -0
- package/dist/commonjs/components/HeadersSection.js +5 -3
- package/dist/commonjs/components/HighlightText.d.ts +1 -1
- package/dist/commonjs/components/HighlightText.js +5 -7
- package/dist/commonjs/components/Inspector/AnalyticsTab.d.ts +3 -0
- package/dist/commonjs/components/Inspector/AnalyticsTab.js +231 -0
- package/dist/commonjs/components/Inspector/ConsoleTab.d.ts +3 -0
- package/dist/commonjs/components/Inspector/ConsoleTab.js +410 -0
- package/dist/commonjs/components/Inspector/FabLauncher.d.ts +3 -0
- package/dist/commonjs/components/Inspector/FabLauncher.js +54 -0
- package/dist/commonjs/components/Inspector/InsightsDashboard.d.ts +3 -0
- package/dist/commonjs/components/Inspector/InsightsDashboard.js +619 -0
- package/dist/commonjs/components/Inspector/InspectorContext.d.ts +5 -0
- package/dist/commonjs/components/Inspector/InspectorContext.js +18 -0
- package/dist/commonjs/components/Inspector/InspectorHeader.d.ts +3 -0
- package/dist/commonjs/components/Inspector/InspectorHeader.js +452 -0
- package/dist/commonjs/components/Inspector/LogDetail.d.ts +3 -0
- package/dist/commonjs/components/Inspector/LogDetail.js +963 -0
- package/dist/commonjs/components/Inspector/MainScreen.d.ts +3 -0
- package/dist/commonjs/components/Inspector/MainScreen.js +68 -0
- package/dist/commonjs/components/Inspector/NavigationTracker.d.ts +3 -0
- package/dist/commonjs/components/Inspector/NavigationTracker.js +12 -0
- package/dist/commonjs/components/Inspector/NetworkDetail.d.ts +3 -0
- package/dist/commonjs/components/Inspector/NetworkDetail.js +405 -0
- package/dist/commonjs/components/Inspector/NetworkTab.d.ts +3 -0
- package/dist/commonjs/components/Inspector/NetworkTab.js +282 -0
- package/dist/commonjs/components/Inspector/ReduxTab.d.ts +3 -0
- package/dist/commonjs/components/Inspector/ReduxTab.js +75 -0
- package/dist/commonjs/components/Inspector/SettingsPanel.d.ts +3 -0
- package/dist/commonjs/components/Inspector/SettingsPanel.js +1476 -0
- package/dist/commonjs/components/Inspector/TabBar.d.ts +3 -0
- package/dist/commonjs/components/Inspector/TabBar.js +95 -0
- package/dist/commonjs/components/Inspector/WebViewTab.d.ts +3 -0
- package/dist/commonjs/components/Inspector/WebViewTab.js +757 -0
- package/dist/commonjs/components/InspectorHeader.d.ts +19 -0
- package/dist/commonjs/components/InspectorHeader.js +329 -0
- package/dist/commonjs/components/InspectorTabBar.d.ts +16 -0
- package/dist/commonjs/components/InspectorTabBar.js +90 -0
- package/dist/commonjs/components/JsonViewer.d.ts +5 -2
- package/dist/commonjs/components/JsonViewer.js +111 -172
- package/dist/commonjs/components/LogCard.js +109 -86
- package/dist/commonjs/components/MetaAccordion.d.ts +1 -10
- package/dist/commonjs/components/MetaAccordion.js +23 -21
- package/dist/commonjs/components/NavigationTracker.d.ts +7 -0
- package/dist/commonjs/components/NavigationTracker.js +76 -0
- package/dist/commonjs/components/NetworkIcons.d.ts +6 -0
- package/dist/commonjs/components/NetworkIcons.js +54 -8
- package/dist/commonjs/components/ReduxTabView.d.ts +9 -0
- package/dist/commonjs/components/ReduxTabView.js +56 -0
- package/dist/commonjs/components/ReduxTreeView.d.ts +2 -2
- package/dist/commonjs/components/ReduxTreeView.js +243 -203
- package/dist/commonjs/components/SegmentedTabs.d.ts +15 -0
- package/dist/commonjs/components/SegmentedTabs.js +52 -0
- package/dist/commonjs/components/SettingsView.d.ts +13 -0
- package/dist/commonjs/components/SettingsView.js +328 -0
- package/dist/commonjs/components/TouchableScale.d.ts +2 -2
- package/dist/commonjs/components/TouchableScale.js +2 -2
- package/dist/commonjs/components/TreeNode.js +2 -2
- package/dist/commonjs/constants/index.js +1 -12
- package/dist/commonjs/constants/version.d.ts +1 -1
- package/dist/commonjs/constants/version.js +1 -1
- package/dist/commonjs/customHooks/consoleLogger.js +137 -13
- package/dist/commonjs/customHooks/networkLogger.d.ts +0 -1
- package/dist/commonjs/customHooks/networkLogger.js +0 -1
- package/dist/commonjs/customHooks/reduxLogger.d.ts +2 -9
- package/dist/commonjs/enums/index.d.ts +39 -0
- package/dist/commonjs/enums/index.js +50 -0
- package/dist/commonjs/helpers/index.d.ts +27 -1
- package/dist/commonjs/helpers/index.js +187 -12
- package/dist/commonjs/helpers/settingsStore.d.ts +2 -24
- package/dist/commonjs/i18n/en.json +144 -0
- package/dist/commonjs/i18n/index.d.ts +2 -0
- package/dist/commonjs/i18n/index.js +27 -0
- package/dist/commonjs/i18n/locales/en.json +314 -0
- package/dist/commonjs/index.d.ts +1 -2
- package/dist/commonjs/index.js +196 -4800
- package/dist/commonjs/styles/AppColors.d.ts +148 -0
- package/dist/commonjs/styles/AppColors.js +176 -0
- package/dist/commonjs/styles/common.d.ts +3 -0
- package/dist/commonjs/styles/common.js +201 -0
- package/dist/commonjs/styles/index.d.ts +167 -442
- package/dist/commonjs/styles/index.js +239 -471
- package/dist/commonjs/types/enums.d.ts +9 -0
- package/dist/commonjs/types/enums.js +4 -0
- package/dist/commonjs/types/index.d.ts +4 -111
- package/dist/commonjs/types/index.js +16 -0
- package/dist/commonjs/types/interfaces.d.ts +337 -0
- package/dist/commonjs/types/interfaces.js +2 -0
- package/dist/esm/assets/svgAssets.d.ts +3 -0
- package/dist/esm/assets/svgAssets.js +14 -0
- package/dist/esm/components/AnalyticsEventCard.d.ts +1 -14
- package/dist/esm/components/AnalyticsEventCard.js +32 -49
- package/dist/esm/components/AnalyticsGraph.d.ts +2 -6
- package/dist/esm/components/AnalyticsGraph.js +8 -8
- package/dist/esm/components/AnalyticsTabView.d.ts +15 -0
- package/dist/esm/components/AnalyticsTabView.js +151 -0
- package/dist/esm/components/AnimatedEntrance.d.ts +1 -1
- package/dist/esm/components/AnimatedEntrance.js +2 -2
- package/dist/esm/components/ApiDetailView.d.ts +22 -0
- package/dist/esm/components/ApiDetailView.js +264 -0
- package/dist/esm/components/ApisTabView.d.ts +33 -0
- package/dist/esm/components/ApisTabView.js +196 -0
- package/dist/esm/components/CodeSnippet.d.ts +1 -5
- package/dist/esm/components/CodeSnippet.js +34 -34
- package/dist/esm/components/ConsoleLogCard.d.ts +1 -8
- package/dist/esm/components/ConsoleLogCard.js +262 -409
- package/dist/esm/components/ConsoleLogDetailView.d.ts +9 -0
- package/dist/esm/components/ConsoleLogDetailView.js +271 -0
- package/dist/esm/components/ConsoleLogsTabView.d.ts +24 -0
- package/dist/esm/components/ConsoleLogsTabView.js +348 -0
- package/dist/esm/components/CopyButton.d.ts +1 -1
- package/dist/esm/components/CopyButton.js +5 -5
- package/dist/esm/components/DiffViewer.js +4 -2
- package/dist/esm/components/DomainHeader.js +66 -41
- package/dist/esm/components/EmptyState.d.ts +2 -2
- package/dist/esm/components/EmptyState.js +2 -2
- package/dist/esm/components/EndOfListFooter.d.ts +8 -0
- package/dist/esm/components/EndOfListFooter.js +83 -0
- package/dist/esm/components/ErrorBoundary.d.ts +5 -14
- package/dist/esm/components/ErrorBoundary.js +29 -29
- package/dist/esm/components/FloatingBubble.d.ts +14 -0
- package/dist/esm/components/FloatingBubble.js +68 -0
- package/dist/esm/components/HeadersSection.js +5 -3
- package/dist/esm/components/HighlightText.d.ts +1 -1
- package/dist/esm/components/HighlightText.js +5 -7
- package/dist/esm/components/Inspector/AnalyticsTab.d.ts +3 -0
- package/dist/esm/components/Inspector/AnalyticsTab.js +193 -0
- package/dist/esm/components/Inspector/ConsoleTab.d.ts +3 -0
- package/dist/esm/components/Inspector/ConsoleTab.js +372 -0
- package/dist/esm/components/Inspector/FabLauncher.d.ts +3 -0
- package/dist/esm/components/Inspector/FabLauncher.js +49 -0
- package/dist/esm/components/Inspector/InsightsDashboard.d.ts +3 -0
- package/dist/esm/components/Inspector/InsightsDashboard.js +614 -0
- package/dist/esm/components/Inspector/InspectorContext.d.ts +5 -0
- package/dist/esm/components/Inspector/InspectorContext.js +13 -0
- package/dist/esm/components/Inspector/InspectorHeader.d.ts +3 -0
- package/dist/esm/components/Inspector/InspectorHeader.js +447 -0
- package/dist/esm/components/Inspector/LogDetail.d.ts +3 -0
- package/dist/esm/components/Inspector/LogDetail.js +925 -0
- package/dist/esm/components/Inspector/MainScreen.d.ts +3 -0
- package/dist/esm/components/Inspector/MainScreen.js +63 -0
- package/dist/esm/components/Inspector/NavigationTracker.d.ts +3 -0
- package/dist/esm/components/Inspector/NavigationTracker.js +10 -0
- package/dist/esm/components/Inspector/NetworkDetail.d.ts +3 -0
- package/dist/esm/components/Inspector/NetworkDetail.js +367 -0
- package/dist/esm/components/Inspector/NetworkTab.d.ts +3 -0
- package/dist/esm/components/Inspector/NetworkTab.js +244 -0
- package/dist/esm/components/Inspector/ReduxTab.d.ts +3 -0
- package/dist/esm/components/Inspector/ReduxTab.js +70 -0
- package/dist/esm/components/Inspector/SettingsPanel.d.ts +3 -0
- package/dist/esm/components/Inspector/SettingsPanel.js +1438 -0
- package/dist/esm/components/Inspector/TabBar.d.ts +3 -0
- package/dist/esm/components/Inspector/TabBar.js +90 -0
- package/dist/esm/components/Inspector/WebViewTab.d.ts +3 -0
- package/dist/esm/components/Inspector/WebViewTab.js +752 -0
- package/dist/esm/components/InspectorHeader.d.ts +19 -0
- package/dist/esm/components/InspectorHeader.js +323 -0
- package/dist/esm/components/InspectorTabBar.d.ts +16 -0
- package/dist/esm/components/InspectorTabBar.js +84 -0
- package/dist/esm/components/JsonViewer.d.ts +5 -2
- package/dist/esm/components/JsonViewer.js +112 -173
- package/dist/esm/components/LogCard.js +111 -88
- package/dist/esm/components/MetaAccordion.d.ts +1 -10
- package/dist/esm/components/MetaAccordion.js +23 -21
- package/dist/esm/components/NavigationTracker.d.ts +7 -0
- package/dist/esm/components/NavigationTracker.js +39 -0
- package/dist/esm/components/NetworkIcons.d.ts +6 -0
- package/dist/esm/components/NetworkIcons.js +46 -6
- package/dist/esm/components/ReduxTabView.d.ts +9 -0
- package/dist/esm/components/ReduxTabView.js +50 -0
- package/dist/esm/components/ReduxTreeView.d.ts +2 -2
- package/dist/esm/components/ReduxTreeView.js +245 -204
- package/dist/esm/components/SegmentedTabs.d.ts +15 -0
- package/dist/esm/components/SegmentedTabs.js +47 -0
- package/dist/esm/components/SettingsView.d.ts +13 -0
- package/dist/esm/components/SettingsView.js +321 -0
- package/dist/esm/components/TouchableScale.d.ts +2 -2
- package/dist/esm/components/TouchableScale.js +2 -2
- package/dist/esm/components/TreeNode.js +2 -2
- package/dist/esm/constants/index.js +1 -12
- package/dist/esm/constants/version.d.ts +1 -1
- package/dist/esm/constants/version.js +1 -1
- package/dist/esm/customHooks/consoleLogger.js +137 -13
- package/dist/esm/customHooks/networkLogger.d.ts +0 -1
- package/dist/esm/customHooks/networkLogger.js +0 -1
- package/dist/esm/customHooks/reduxLogger.d.ts +2 -9
- package/dist/esm/enums/index.d.ts +39 -0
- package/dist/esm/enums/index.js +47 -0
- package/dist/esm/helpers/index.d.ts +27 -1
- package/dist/esm/helpers/index.js +180 -11
- package/dist/esm/helpers/settingsStore.d.ts +2 -24
- package/dist/esm/i18n/en.json +144 -0
- package/dist/esm/i18n/index.d.ts +2 -0
- package/dist/esm/i18n/index.js +22 -0
- package/dist/esm/i18n/locales/en.json +314 -0
- package/dist/esm/index.d.ts +1 -2
- package/dist/esm/index.js +200 -4796
- package/dist/esm/styles/AppColors.d.ts +148 -0
- package/dist/esm/styles/AppColors.js +176 -0
- package/dist/esm/styles/common.d.ts +3 -0
- package/dist/esm/styles/common.js +197 -0
- package/dist/esm/styles/index.d.ts +167 -442
- package/dist/esm/styles/index.js +239 -471
- package/dist/esm/types/enums.d.ts +9 -0
- package/dist/esm/types/enums.js +3 -0
- package/dist/esm/types/index.d.ts +4 -111
- package/dist/esm/types/index.js +2 -1
- package/dist/esm/types/interfaces.d.ts +337 -0
- package/dist/esm/types/interfaces.js +1 -0
- package/example/App.tsx +145 -2
- package/example/README.md +33 -77
- package/package.json +3 -1
|
@@ -33,10 +33,12 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.toggleGlobalTheme = exports.getRawStyles = void 0;
|
|
36
|
+
exports.toggleGlobalTheme = exports.getRawStyles = exports.commonStyles = void 0;
|
|
37
37
|
const react_native_1 = require("react-native");
|
|
38
38
|
const AppColors_1 = __importStar(require("./AppColors"));
|
|
39
39
|
const AppFonts_1 = require("./AppFonts");
|
|
40
|
+
const common_1 = __importStar(require("./common"));
|
|
41
|
+
exports.commonStyles = common_1.default;
|
|
40
42
|
const getRawStyles = (colors) => ({
|
|
41
43
|
header: {
|
|
42
44
|
flexDirection: 'row',
|
|
@@ -45,7 +47,7 @@ const getRawStyles = (colors) => ({
|
|
|
45
47
|
paddingVertical: 10,
|
|
46
48
|
zIndex: 10,
|
|
47
49
|
minHeight: 64,
|
|
48
|
-
shadowColor:
|
|
50
|
+
shadowColor: colors.black,
|
|
49
51
|
shadowOffset: { width: 0, height: 2 },
|
|
50
52
|
shadowOpacity: 0.08,
|
|
51
53
|
shadowRadius: 4,
|
|
@@ -66,37 +68,6 @@ const getRawStyles = (colors) => ({
|
|
|
66
68
|
letterSpacing: 0.3,
|
|
67
69
|
paddingBottom: 4,
|
|
68
70
|
},
|
|
69
|
-
headerButtonGroup: {
|
|
70
|
-
flexDirection: 'row',
|
|
71
|
-
alignItems: 'center',
|
|
72
|
-
backgroundColor: 'rgba(255, 255, 255, 0.1)',
|
|
73
|
-
borderRadius: 10,
|
|
74
|
-
padding: 3,
|
|
75
|
-
borderWidth: 1,
|
|
76
|
-
borderColor: 'rgba(255, 255, 255, 0.08)',
|
|
77
|
-
},
|
|
78
|
-
headerGroupButton: {
|
|
79
|
-
flexDirection: 'row',
|
|
80
|
-
alignItems: 'center',
|
|
81
|
-
paddingHorizontal: 8,
|
|
82
|
-
paddingVertical: 6,
|
|
83
|
-
borderRadius: 8,
|
|
84
|
-
gap: 4,
|
|
85
|
-
},
|
|
86
|
-
headerGroupButtonActive: {
|
|
87
|
-
backgroundColor: 'rgba(255, 255, 255, 0.22)',
|
|
88
|
-
shadowColor: '#000000',
|
|
89
|
-
shadowOffset: { width: 0, height: 1 },
|
|
90
|
-
shadowOpacity: 0.12,
|
|
91
|
-
shadowRadius: 2,
|
|
92
|
-
elevation: 2,
|
|
93
|
-
},
|
|
94
|
-
headerGroupButtonText: {
|
|
95
|
-
fontFamily: AppFonts_1.AppFonts.interMedium,
|
|
96
|
-
fontSize: 10.5,
|
|
97
|
-
color: 'rgba(255, 255, 255, 0.65)',
|
|
98
|
-
letterSpacing: 0.1,
|
|
99
|
-
},
|
|
100
71
|
headerDetailCenter: {
|
|
101
72
|
alignItems: 'center',
|
|
102
73
|
justifyContent: 'center',
|
|
@@ -112,7 +83,7 @@ const getRawStyles = (colors) => ({
|
|
|
112
83
|
paddingHorizontal: 6,
|
|
113
84
|
paddingVertical: 3,
|
|
114
85
|
borderRadius: 6,
|
|
115
|
-
shadowColor:
|
|
86
|
+
shadowColor: colors.black,
|
|
116
87
|
shadowOffset: { width: 0, height: 1 },
|
|
117
88
|
shadowOpacity: 0.1,
|
|
118
89
|
shadowRadius: 2,
|
|
@@ -141,7 +112,7 @@ const getRawStyles = (colors) => ({
|
|
|
141
112
|
width: 7,
|
|
142
113
|
height: 7,
|
|
143
114
|
borderRadius: 3.5,
|
|
144
|
-
shadowColor:
|
|
115
|
+
shadowColor: colors.black,
|
|
145
116
|
shadowOffset: { width: 0, height: 1 },
|
|
146
117
|
shadowOpacity: 0.2,
|
|
147
118
|
shadowRadius: 1,
|
|
@@ -157,14 +128,14 @@ const getRawStyles = (colors) => ({
|
|
|
157
128
|
headerCountBadge: {
|
|
158
129
|
flexDirection: 'row',
|
|
159
130
|
alignItems: 'center',
|
|
160
|
-
backgroundColor:
|
|
131
|
+
backgroundColor: `${colors.black}33`,
|
|
161
132
|
paddingHorizontal: 12,
|
|
162
133
|
paddingVertical: 6,
|
|
163
134
|
borderRadius: 16,
|
|
164
135
|
gap: 6,
|
|
165
136
|
borderWidth: 0.5,
|
|
166
|
-
borderColor:
|
|
167
|
-
shadowColor:
|
|
137
|
+
borderColor: `${colors.white}33`,
|
|
138
|
+
shadowColor: colors.black,
|
|
168
139
|
shadowOffset: { width: 0, height: 1 },
|
|
169
140
|
shadowOpacity: 0.1,
|
|
170
141
|
shadowRadius: 2,
|
|
@@ -172,21 +143,10 @@ const getRawStyles = (colors) => ({
|
|
|
172
143
|
},
|
|
173
144
|
headerCountText: {
|
|
174
145
|
fontFamily: AppFonts_1.AppFonts.interMedium,
|
|
175
|
-
color:
|
|
146
|
+
color: `${colors.white}F2`,
|
|
176
147
|
fontSize: 12,
|
|
177
148
|
letterSpacing: 0.2,
|
|
178
149
|
},
|
|
179
|
-
iconBtnMinimal: { padding: 6 },
|
|
180
|
-
closeButtonSquare: {
|
|
181
|
-
width: 32,
|
|
182
|
-
height: 32,
|
|
183
|
-
borderRadius: 8,
|
|
184
|
-
backgroundColor: 'rgba(255, 255, 255, 0.15)',
|
|
185
|
-
alignItems: 'center',
|
|
186
|
-
justifyContent: 'center',
|
|
187
|
-
borderWidth: 1,
|
|
188
|
-
borderColor: 'rgba(255, 255, 255, 0.08)',
|
|
189
|
-
},
|
|
190
150
|
listContent: { paddingBottom: 12 },
|
|
191
151
|
// #2 — scroll-to-top button, always shown at the bottom right.
|
|
192
152
|
scrollTopBtn: {
|
|
@@ -199,7 +159,7 @@ const getRawStyles = (colors) => ({
|
|
|
199
159
|
backgroundColor: colors.purple,
|
|
200
160
|
alignItems: 'center',
|
|
201
161
|
justifyContent: 'center',
|
|
202
|
-
shadowColor:
|
|
162
|
+
shadowColor: colors.black,
|
|
203
163
|
shadowOffset: { width: 0, height: 3 },
|
|
204
164
|
shadowOpacity: 0.25,
|
|
205
165
|
shadowRadius: 5,
|
|
@@ -207,7 +167,16 @@ const getRawStyles = (colors) => ({
|
|
|
207
167
|
zIndex: 50,
|
|
208
168
|
},
|
|
209
169
|
detailScroll: { flex: 1 },
|
|
210
|
-
|
|
170
|
+
closeButtonSquare: {
|
|
171
|
+
width: 32,
|
|
172
|
+
height: 32,
|
|
173
|
+
borderRadius: 8,
|
|
174
|
+
backgroundColor: `${colors.white}26`,
|
|
175
|
+
alignItems: 'center',
|
|
176
|
+
justifyContent: 'center',
|
|
177
|
+
borderWidth: 1,
|
|
178
|
+
borderColor: `${colors.white}14`,
|
|
179
|
+
},
|
|
211
180
|
fabWrapper: {
|
|
212
181
|
position: 'absolute',
|
|
213
182
|
bottom: 180,
|
|
@@ -221,16 +190,6 @@ const getRawStyles = (colors) => ({
|
|
|
221
190
|
shadowOpacity: 0.4,
|
|
222
191
|
shadowRadius: 12,
|
|
223
192
|
},
|
|
224
|
-
fabIconContainer: {
|
|
225
|
-
backgroundColor: '#FFFFFF',
|
|
226
|
-
borderRadius: 28,
|
|
227
|
-
width: 56,
|
|
228
|
-
height: 56,
|
|
229
|
-
borderWidth: 1.5,
|
|
230
|
-
borderColor: colors.purple,
|
|
231
|
-
alignItems: 'center',
|
|
232
|
-
justifyContent: 'center',
|
|
233
|
-
},
|
|
234
193
|
fabPulseRing: {
|
|
235
194
|
position: 'absolute',
|
|
236
195
|
width: 60,
|
|
@@ -254,49 +213,6 @@ const getRawStyles = (colors) => ({
|
|
|
254
213
|
height: 102,
|
|
255
214
|
transform: [{ rotate: '25deg' }],
|
|
256
215
|
},
|
|
257
|
-
fab: {
|
|
258
|
-
width: 56,
|
|
259
|
-
height: 56,
|
|
260
|
-
borderRadius: 28,
|
|
261
|
-
alignItems: 'center',
|
|
262
|
-
justifyContent: 'center',
|
|
263
|
-
backgroundColor: colors.purple,
|
|
264
|
-
shadowColor: colors.shadowColorString,
|
|
265
|
-
shadowOffset: { width: 0, height: 6 },
|
|
266
|
-
shadowOpacity: 0.35,
|
|
267
|
-
shadowRadius: 10,
|
|
268
|
-
elevation: 12,
|
|
269
|
-
},
|
|
270
|
-
fabText: {
|
|
271
|
-
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
272
|
-
color: colors.primaryLight,
|
|
273
|
-
fontSize: 14,
|
|
274
|
-
},
|
|
275
|
-
fabBadge: {
|
|
276
|
-
position: 'absolute',
|
|
277
|
-
top: -6,
|
|
278
|
-
right: -6,
|
|
279
|
-
minWidth: 24,
|
|
280
|
-
height: 24,
|
|
281
|
-
borderRadius: 12,
|
|
282
|
-
alignItems: 'center',
|
|
283
|
-
justifyContent: 'center',
|
|
284
|
-
paddingHorizontal: 6,
|
|
285
|
-
borderWidth: 2.5,
|
|
286
|
-
borderColor: colors.primaryLight,
|
|
287
|
-
shadowColor: colors.shadowColorString,
|
|
288
|
-
shadowOffset: { width: 0, height: 2 },
|
|
289
|
-
shadowOpacity: 0.2,
|
|
290
|
-
shadowRadius: 3,
|
|
291
|
-
elevation: 3,
|
|
292
|
-
},
|
|
293
|
-
fabBadgeNormal: { backgroundColor: colors.purple },
|
|
294
|
-
fabBadgeError: { backgroundColor: colors.errorColor },
|
|
295
|
-
fabBadgeText: {
|
|
296
|
-
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
297
|
-
color: colors.primaryLight,
|
|
298
|
-
fontSize: 11,
|
|
299
|
-
},
|
|
300
216
|
fabGreenDot: {
|
|
301
217
|
position: 'absolute',
|
|
302
218
|
top: 2,
|
|
@@ -304,39 +220,15 @@ const getRawStyles = (colors) => ({
|
|
|
304
220
|
width: 12,
|
|
305
221
|
height: 12,
|
|
306
222
|
borderRadius: 6,
|
|
307
|
-
backgroundColor:
|
|
223
|
+
backgroundColor: colors.greenA400,
|
|
308
224
|
borderWidth: 2,
|
|
309
225
|
borderColor: colors.primaryLight,
|
|
310
|
-
shadowColor:
|
|
226
|
+
shadowColor: colors.black,
|
|
311
227
|
shadowOffset: { width: 0, height: 1 },
|
|
312
228
|
shadowOpacity: 0.2,
|
|
313
229
|
shadowRadius: 1.5,
|
|
314
230
|
elevation: 2,
|
|
315
231
|
},
|
|
316
|
-
statBox: {
|
|
317
|
-
flex: 1,
|
|
318
|
-
alignItems: 'center',
|
|
319
|
-
justifyContent: 'center',
|
|
320
|
-
},
|
|
321
|
-
statValue: {
|
|
322
|
-
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
323
|
-
color: colors.primaryBlack,
|
|
324
|
-
fontSize: 14,
|
|
325
|
-
},
|
|
326
|
-
statLabel: {
|
|
327
|
-
fontFamily: AppFonts_1.AppFonts.interMedium,
|
|
328
|
-
color: colors.grayTextWeak,
|
|
329
|
-
fontSize: 10,
|
|
330
|
-
marginTop: 4,
|
|
331
|
-
textTransform: 'uppercase',
|
|
332
|
-
letterSpacing: 0.5,
|
|
333
|
-
},
|
|
334
|
-
miniGraphWrap: {
|
|
335
|
-
marginTop: 8,
|
|
336
|
-
height: 16,
|
|
337
|
-
alignItems: 'center',
|
|
338
|
-
justifyContent: 'center',
|
|
339
|
-
},
|
|
340
232
|
toolbarRow: {
|
|
341
233
|
flexDirection: 'row',
|
|
342
234
|
alignItems: 'center',
|
|
@@ -351,12 +243,6 @@ const getRawStyles = (colors) => ({
|
|
|
351
243
|
alignItems: 'center',
|
|
352
244
|
gap: 10,
|
|
353
245
|
},
|
|
354
|
-
toolbarDivider: {
|
|
355
|
-
width: 1,
|
|
356
|
-
height: 20,
|
|
357
|
-
backgroundColor: colors.dividerColor,
|
|
358
|
-
marginHorizontal: 2,
|
|
359
|
-
},
|
|
360
246
|
toolbarBtn: {
|
|
361
247
|
width: 34,
|
|
362
248
|
height: 34,
|
|
@@ -366,7 +252,7 @@ const getRawStyles = (colors) => ({
|
|
|
366
252
|
backgroundColor: colors.primaryLight,
|
|
367
253
|
borderWidth: 1.5,
|
|
368
254
|
borderColor: colors.grayBorderSecondary,
|
|
369
|
-
shadowColor:
|
|
255
|
+
shadowColor: colors.black,
|
|
370
256
|
shadowOffset: { width: 0, height: 1 },
|
|
371
257
|
shadowOpacity: 0.04,
|
|
372
258
|
shadowRadius: 2,
|
|
@@ -415,17 +301,18 @@ const getRawStyles = (colors) => ({
|
|
|
415
301
|
},
|
|
416
302
|
statusFilterWrap: { marginRight: 6 },
|
|
417
303
|
statusFilterChip: {
|
|
418
|
-
|
|
419
|
-
height: 30,
|
|
420
|
-
justifyContent: 'center',
|
|
304
|
+
flexDirection: 'row',
|
|
421
305
|
alignItems: 'center',
|
|
306
|
+
paddingHorizontal: 9,
|
|
307
|
+
height: 32,
|
|
308
|
+
justifyContent: 'center',
|
|
422
309
|
borderRadius: 24,
|
|
423
310
|
borderWidth: 1.5,
|
|
424
311
|
borderColor: colors.grayBorderSecondary,
|
|
425
312
|
backgroundColor: colors.primaryLight,
|
|
426
|
-
shadowColor:
|
|
313
|
+
shadowColor: colors.black,
|
|
427
314
|
shadowOffset: { width: 0, height: 1 },
|
|
428
|
-
shadowOpacity: 0.
|
|
315
|
+
shadowOpacity: 0.04,
|
|
429
316
|
shadowRadius: 2,
|
|
430
317
|
elevation: 1,
|
|
431
318
|
},
|
|
@@ -433,6 +320,29 @@ const getRawStyles = (colors) => ({
|
|
|
433
320
|
borderColor: colors.purple,
|
|
434
321
|
backgroundColor: colors.purpleShade50,
|
|
435
322
|
},
|
|
323
|
+
filterCheckbox: {
|
|
324
|
+
width: 13,
|
|
325
|
+
height: 13,
|
|
326
|
+
borderRadius: 3,
|
|
327
|
+
borderWidth: 1.5,
|
|
328
|
+
borderColor: colors.grayBorderSecondary,
|
|
329
|
+
backgroundColor: colors.primaryLight,
|
|
330
|
+
alignItems: 'center',
|
|
331
|
+
justifyContent: 'center',
|
|
332
|
+
marginRight: 6,
|
|
333
|
+
},
|
|
334
|
+
filterCheckboxActive: {
|
|
335
|
+
borderColor: 'transparent',
|
|
336
|
+
},
|
|
337
|
+
filterChipIcon: {
|
|
338
|
+
marginRight: 5,
|
|
339
|
+
},
|
|
340
|
+
methodBadgeMini: {
|
|
341
|
+
width: 4.5,
|
|
342
|
+
height: 13,
|
|
343
|
+
borderRadius: 2,
|
|
344
|
+
marginRight: 6,
|
|
345
|
+
},
|
|
436
346
|
statusFilterText: {
|
|
437
347
|
fontFamily: AppFonts_1.AppFonts.interMedium,
|
|
438
348
|
color: colors.grayText,
|
|
@@ -457,7 +367,7 @@ const getRawStyles = (colors) => ({
|
|
|
457
367
|
paddingVertical: 4,
|
|
458
368
|
borderWidth: 1.5,
|
|
459
369
|
borderColor: colors.grayBorderSecondary,
|
|
460
|
-
shadowColor:
|
|
370
|
+
shadowColor: colors.black,
|
|
461
371
|
shadowOffset: { width: 0, height: 1 },
|
|
462
372
|
shadowOpacity: 0.04,
|
|
463
373
|
shadowRadius: 2,
|
|
@@ -472,97 +382,84 @@ const getRawStyles = (colors) => ({
|
|
|
472
382
|
fontSize: 14,
|
|
473
383
|
},
|
|
474
384
|
clearBtn: { padding: 4 },
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
width: 170,
|
|
484
|
-
backgroundColor: colors.primaryLight,
|
|
485
|
-
borderRadius: 14,
|
|
385
|
+
domainHeaderCard: {
|
|
386
|
+
marginHorizontal: 12,
|
|
387
|
+
marginTop: 12,
|
|
388
|
+
marginBottom: 4,
|
|
389
|
+
paddingHorizontal: 12,
|
|
390
|
+
paddingVertical: 8,
|
|
391
|
+
borderRadius: 10,
|
|
392
|
+
backgroundColor: colors.grayBackground,
|
|
486
393
|
borderWidth: 1,
|
|
487
394
|
borderColor: colors.grayBorderSecondary,
|
|
488
|
-
zIndex: 999,
|
|
489
|
-
shadowColor: '#000000',
|
|
490
|
-
shadowOffset: { width: 0, height: 8 },
|
|
491
|
-
shadowOpacity: 0.15,
|
|
492
|
-
shadowRadius: 12,
|
|
493
|
-
elevation: 8,
|
|
494
|
-
overflow: 'hidden',
|
|
495
|
-
},
|
|
496
|
-
dropdownItem: {
|
|
497
|
-
padding: 13,
|
|
498
|
-
borderBottomWidth: 1,
|
|
499
|
-
borderBottomColor: colors.dividerColor,
|
|
500
|
-
},
|
|
501
|
-
domainHeaderSeparator: {
|
|
502
|
-
marginTop: 12,
|
|
503
|
-
paddingTop: 16,
|
|
504
|
-
borderTopWidth: 1,
|
|
505
|
-
borderTopColor: colors.dividerColor,
|
|
506
395
|
},
|
|
507
|
-
|
|
396
|
+
domainHeaderTopRow: {
|
|
508
397
|
flexDirection: 'row',
|
|
509
398
|
alignItems: 'center',
|
|
510
399
|
justifyContent: 'space-between',
|
|
511
|
-
paddingLeft: 20,
|
|
512
|
-
paddingRight: 16,
|
|
513
|
-
marginTop: 12,
|
|
514
|
-
marginBottom: 6,
|
|
515
400
|
},
|
|
516
401
|
domainHeaderLeft: {
|
|
517
402
|
flexDirection: 'row',
|
|
518
403
|
alignItems: 'center',
|
|
519
404
|
flex: 1,
|
|
520
|
-
|
|
521
|
-
|
|
405
|
+
gap: 8,
|
|
406
|
+
},
|
|
407
|
+
domainIconWrap: {
|
|
408
|
+
width: 26,
|
|
409
|
+
height: 26,
|
|
410
|
+
borderRadius: 6,
|
|
411
|
+
alignItems: 'center',
|
|
412
|
+
justifyContent: 'center',
|
|
522
413
|
},
|
|
523
|
-
|
|
414
|
+
domainTitleText: {
|
|
524
415
|
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
525
|
-
fontSize:
|
|
416
|
+
fontSize: 13.5,
|
|
526
417
|
fontWeight: '700',
|
|
418
|
+
color: colors.primaryBlack,
|
|
527
419
|
textTransform: 'capitalize',
|
|
528
|
-
flexShrink: 1,
|
|
529
|
-
marginLeft: 2,
|
|
530
420
|
},
|
|
531
|
-
|
|
421
|
+
domainSummaryRow: {
|
|
532
422
|
flexDirection: 'row',
|
|
533
423
|
alignItems: 'center',
|
|
534
|
-
|
|
535
|
-
marginTop:
|
|
424
|
+
gap: 6,
|
|
425
|
+
marginTop: 1,
|
|
536
426
|
},
|
|
537
|
-
|
|
427
|
+
domainSummaryText: {
|
|
538
428
|
fontFamily: AppFonts_1.AppFonts.interRegular,
|
|
539
429
|
fontSize: 10,
|
|
540
430
|
color: colors.grayTextWeak,
|
|
541
431
|
},
|
|
542
|
-
|
|
432
|
+
domainPctText: {
|
|
543
433
|
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
544
|
-
fontSize: 9,
|
|
545
|
-
marginLeft: 4,
|
|
434
|
+
fontSize: 9.5,
|
|
546
435
|
},
|
|
547
|
-
|
|
436
|
+
domainProgressTrack: {
|
|
548
437
|
flexDirection: 'row',
|
|
549
|
-
|
|
550
|
-
borderRadius:
|
|
551
|
-
borderWidth: 1,
|
|
552
|
-
borderColor: colors.grayBorderSecondary,
|
|
438
|
+
height: 2.5,
|
|
439
|
+
borderRadius: 1.25,
|
|
553
440
|
overflow: 'hidden',
|
|
554
|
-
backgroundColor:
|
|
441
|
+
backgroundColor: 'rgba(148, 163, 184, 0.2)',
|
|
442
|
+
marginTop: 6,
|
|
443
|
+
width: '100%',
|
|
555
444
|
},
|
|
556
|
-
|
|
445
|
+
domainProgressSegment: {
|
|
446
|
+
height: '100%',
|
|
447
|
+
},
|
|
448
|
+
domainStatsGroup: {
|
|
557
449
|
flexDirection: 'row',
|
|
558
450
|
alignItems: 'center',
|
|
559
451
|
gap: 4,
|
|
560
|
-
paddingHorizontal: 8,
|
|
561
|
-
paddingVertical: 5,
|
|
562
452
|
},
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
453
|
+
domainStatPill: {
|
|
454
|
+
flexDirection: 'row',
|
|
455
|
+
alignItems: 'center',
|
|
456
|
+
gap: 3,
|
|
457
|
+
paddingHorizontal: 6,
|
|
458
|
+
paddingVertical: 3,
|
|
459
|
+
borderRadius: 6,
|
|
460
|
+
borderWidth: 1,
|
|
461
|
+
borderColor: colors.grayBorderSecondary,
|
|
462
|
+
backgroundColor: colors.primaryLight,
|
|
566
463
|
},
|
|
567
464
|
domainStatText: {
|
|
568
465
|
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
@@ -571,17 +468,18 @@ const getRawStyles = (colors) => ({
|
|
|
571
468
|
treeNodeRow: {
|
|
572
469
|
flexDirection: 'row',
|
|
573
470
|
alignItems: 'stretch',
|
|
574
|
-
|
|
471
|
+
paddingLeft: 12,
|
|
472
|
+
paddingRight: 12,
|
|
575
473
|
},
|
|
576
474
|
treeLines: {
|
|
577
|
-
width:
|
|
475
|
+
width: 28,
|
|
578
476
|
position: 'relative',
|
|
579
477
|
},
|
|
580
478
|
modernTreeLine: {
|
|
581
479
|
position: 'absolute',
|
|
582
|
-
left:
|
|
480
|
+
left: 14,
|
|
583
481
|
top: 0,
|
|
584
|
-
width:
|
|
482
|
+
width: 14,
|
|
585
483
|
height: '100%',
|
|
586
484
|
borderLeftWidth: 1.5,
|
|
587
485
|
opacity: 0.5,
|
|
@@ -589,39 +487,56 @@ const getRawStyles = (colors) => ({
|
|
|
589
487
|
modernTreeLineLast: {
|
|
590
488
|
height: '50%',
|
|
591
489
|
borderBottomWidth: 1.5,
|
|
592
|
-
borderBottomLeftRadius:
|
|
490
|
+
borderBottomLeftRadius: 10,
|
|
593
491
|
},
|
|
594
492
|
modernTreeBranch: {
|
|
595
493
|
position: 'absolute',
|
|
596
|
-
left:
|
|
494
|
+
left: 14,
|
|
597
495
|
top: '50%',
|
|
598
|
-
width:
|
|
496
|
+
width: 14,
|
|
599
497
|
borderTopWidth: 1.5,
|
|
600
498
|
opacity: 0.5,
|
|
601
499
|
},
|
|
602
500
|
treeCardWrapper: {
|
|
603
501
|
flex: 1,
|
|
604
|
-
paddingVertical:
|
|
502
|
+
paddingVertical: 3.5,
|
|
605
503
|
},
|
|
606
504
|
card: {
|
|
607
505
|
marginHorizontal: 0,
|
|
608
506
|
marginVertical: 0,
|
|
609
|
-
borderRadius:
|
|
507
|
+
borderRadius: 12,
|
|
610
508
|
overflow: 'hidden',
|
|
611
|
-
shadowColor:
|
|
612
|
-
shadowOffset: { width: 0, height:
|
|
613
|
-
shadowOpacity: 0.
|
|
614
|
-
shadowRadius:
|
|
615
|
-
elevation:
|
|
509
|
+
shadowColor: colors.black,
|
|
510
|
+
shadowOffset: { width: 0, height: 2 },
|
|
511
|
+
shadowOpacity: 0.05,
|
|
512
|
+
shadowRadius: 4,
|
|
513
|
+
elevation: 2,
|
|
616
514
|
borderWidth: 1,
|
|
617
515
|
borderColor: colors.grayBorderSecondary,
|
|
618
516
|
backgroundColor: colors.primaryLight,
|
|
619
517
|
},
|
|
620
|
-
cardBody: {
|
|
621
|
-
|
|
518
|
+
cardBody: {
|
|
519
|
+
paddingHorizontal: 12,
|
|
520
|
+
paddingTop: 10,
|
|
521
|
+
paddingBottom: 9,
|
|
522
|
+
},
|
|
523
|
+
cardHeaderRow: {
|
|
622
524
|
flexDirection: 'row',
|
|
623
525
|
alignItems: 'center',
|
|
624
|
-
|
|
526
|
+
justifyContent: 'space-between',
|
|
527
|
+
marginBottom: 4,
|
|
528
|
+
},
|
|
529
|
+
cardHeaderLeft: {
|
|
530
|
+
flexDirection: 'row',
|
|
531
|
+
alignItems: 'center',
|
|
532
|
+
flex: 1,
|
|
533
|
+
marginRight: 8,
|
|
534
|
+
gap: 6,
|
|
535
|
+
},
|
|
536
|
+
cardHeaderRight: {
|
|
537
|
+
flexDirection: 'row',
|
|
538
|
+
alignItems: 'center',
|
|
539
|
+
gap: 5,
|
|
625
540
|
},
|
|
626
541
|
smallCheckbox: {
|
|
627
542
|
width: 13,
|
|
@@ -631,8 +546,7 @@ const getRawStyles = (colors) => ({
|
|
|
631
546
|
borderColor: colors.grayTextWeak,
|
|
632
547
|
alignItems: 'center',
|
|
633
548
|
justifyContent: 'center',
|
|
634
|
-
backgroundColor:
|
|
635
|
-
marginRight: 8,
|
|
549
|
+
backgroundColor: colors.white,
|
|
636
550
|
},
|
|
637
551
|
smallCheckboxChecked: {
|
|
638
552
|
backgroundColor: colors.purple,
|
|
@@ -642,102 +556,118 @@ const getRawStyles = (colors) => ({
|
|
|
642
556
|
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
643
557
|
color: colors.grayTextWeak,
|
|
644
558
|
fontSize: 10,
|
|
645
|
-
marginRight: 6,
|
|
646
|
-
minWidth: 20,
|
|
647
559
|
},
|
|
648
|
-
|
|
649
|
-
|
|
560
|
+
methodBadge: {
|
|
561
|
+
paddingHorizontal: 6,
|
|
562
|
+
paddingVertical: 2.5,
|
|
563
|
+
borderRadius: 6,
|
|
650
564
|
alignItems: 'center',
|
|
651
|
-
|
|
565
|
+
justifyContent: 'center',
|
|
566
|
+
shadowColor: colors.black,
|
|
567
|
+
shadowOffset: { width: 0, height: 1 },
|
|
568
|
+
shadowOpacity: 0.08,
|
|
569
|
+
shadowRadius: 2,
|
|
570
|
+
elevation: 1,
|
|
571
|
+
},
|
|
572
|
+
methodBadgeText: {
|
|
573
|
+
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
574
|
+
fontSize: 9.5,
|
|
575
|
+
letterSpacing: 0.4,
|
|
576
|
+
},
|
|
577
|
+
cardHostText: {
|
|
578
|
+
fontFamily: AppFonts_1.AppFonts.interMedium,
|
|
579
|
+
fontSize: 12,
|
|
580
|
+
color: colors.primaryBlack,
|
|
581
|
+
flexShrink: 1,
|
|
582
|
+
},
|
|
583
|
+
statusPill: {
|
|
652
584
|
paddingHorizontal: 6,
|
|
653
|
-
paddingVertical:
|
|
654
|
-
borderRadius:
|
|
585
|
+
paddingVertical: 2,
|
|
586
|
+
borderRadius: 6,
|
|
655
587
|
borderWidth: 1,
|
|
588
|
+
alignItems: 'center',
|
|
589
|
+
justifyContent: 'center',
|
|
656
590
|
},
|
|
657
|
-
|
|
591
|
+
statusPillText: {
|
|
658
592
|
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
659
593
|
fontSize: 10,
|
|
660
594
|
},
|
|
661
|
-
|
|
595
|
+
cardSlugBox: {
|
|
662
596
|
flexDirection: 'row',
|
|
663
597
|
alignItems: 'center',
|
|
664
598
|
justifyContent: 'space-between',
|
|
665
|
-
|
|
599
|
+
backgroundColor: colors.grayBackground,
|
|
600
|
+
borderRadius: 7,
|
|
601
|
+
borderWidth: 1,
|
|
602
|
+
borderColor: colors.grayBorderSecondary,
|
|
603
|
+
paddingHorizontal: 8,
|
|
604
|
+
paddingVertical: 5,
|
|
605
|
+
marginVertical: 5,
|
|
606
|
+
gap: 6,
|
|
607
|
+
},
|
|
608
|
+
slugLeft: {
|
|
609
|
+
flexDirection: 'row',
|
|
610
|
+
alignItems: 'center',
|
|
611
|
+
flex: 1,
|
|
612
|
+
gap: 6,
|
|
613
|
+
},
|
|
614
|
+
slugTag: {
|
|
615
|
+
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
616
|
+
fontSize: 8.5,
|
|
617
|
+
color: colors.grayTextWeak,
|
|
618
|
+
letterSpacing: 0.5,
|
|
619
|
+
},
|
|
620
|
+
slugText: {
|
|
621
|
+
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
622
|
+
fontSize: 12.5,
|
|
623
|
+
color: colors.primaryBlack,
|
|
624
|
+
flexShrink: 1,
|
|
625
|
+
},
|
|
626
|
+
slugRight: {
|
|
627
|
+
flexDirection: 'row',
|
|
628
|
+
alignItems: 'center',
|
|
629
|
+
gap: 4,
|
|
666
630
|
},
|
|
667
|
-
|
|
631
|
+
cardFooterRow: {
|
|
668
632
|
flexDirection: 'row',
|
|
669
633
|
alignItems: 'center',
|
|
670
634
|
justifyContent: 'space-between',
|
|
671
|
-
|
|
635
|
+
marginTop: 2,
|
|
672
636
|
},
|
|
673
637
|
cardDateRow: {
|
|
674
638
|
flexDirection: 'row',
|
|
675
639
|
alignItems: 'center',
|
|
676
|
-
gap:
|
|
640
|
+
gap: 3.5,
|
|
677
641
|
},
|
|
678
642
|
cardDateText: {
|
|
679
643
|
fontFamily: AppFonts_1.AppFonts.interRegular,
|
|
680
644
|
color: colors.grayTextWeak,
|
|
681
645
|
fontSize: 10,
|
|
682
|
-
letterSpacing: 0.
|
|
646
|
+
letterSpacing: 0.1,
|
|
683
647
|
},
|
|
684
|
-
|
|
648
|
+
cardFooterRight: {
|
|
685
649
|
flexDirection: 'row',
|
|
686
650
|
alignItems: 'center',
|
|
687
|
-
gap:
|
|
688
|
-
flexShrink: 0,
|
|
689
|
-
},
|
|
690
|
-
urlPathText: {
|
|
691
|
-
fontFamily: AppFonts_1.AppFonts.interMedium,
|
|
692
|
-
color: colors.primaryBlack,
|
|
693
|
-
fontSize: 13,
|
|
694
|
-
flexShrink: 1,
|
|
651
|
+
gap: 5,
|
|
695
652
|
},
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
color: colors.grayText,
|
|
699
|
-
fontSize: 11,
|
|
700
|
-
flex: 1,
|
|
701
|
-
},
|
|
702
|
-
requestTypeText: {
|
|
703
|
-
fontFamily: AppFonts_1.AppFonts.interRegular,
|
|
704
|
-
color: colors.grayText,
|
|
705
|
-
fontSize: 10,
|
|
706
|
-
},
|
|
707
|
-
methodBadge: {
|
|
708
|
-
paddingHorizontal: 6,
|
|
709
|
-
paddingVertical: 3,
|
|
710
|
-
borderRadius: 6,
|
|
711
|
-
marginRight: 6,
|
|
712
|
-
minWidth: 46,
|
|
653
|
+
chip: {
|
|
654
|
+
flexDirection: 'row',
|
|
713
655
|
alignItems: 'center',
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
elevation: 1,
|
|
656
|
+
gap: 3.5,
|
|
657
|
+
paddingHorizontal: 5,
|
|
658
|
+
paddingVertical: 2,
|
|
659
|
+
borderRadius: 5,
|
|
660
|
+
borderWidth: 1,
|
|
720
661
|
},
|
|
721
|
-
|
|
662
|
+
chipText: {
|
|
722
663
|
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
723
664
|
fontSize: 9.5,
|
|
724
|
-
letterSpacing: 0.4,
|
|
725
665
|
},
|
|
726
|
-
timelineTrack: {
|
|
727
|
-
height: 3,
|
|
728
|
-
backgroundColor: colors.graySurface,
|
|
729
|
-
marginTop: 4,
|
|
730
|
-
borderRadius: 1.5,
|
|
731
|
-
overflow: 'hidden',
|
|
732
|
-
position: 'relative',
|
|
733
|
-
},
|
|
734
|
-
timelineBar: { position: 'absolute', height: '100%', borderRadius: 1.5 },
|
|
735
666
|
empty: {
|
|
736
667
|
flex: 1,
|
|
737
668
|
alignItems: 'center',
|
|
738
669
|
justifyContent: 'center',
|
|
739
670
|
},
|
|
740
|
-
emptyIcon: { fontSize: 32, color: colors.grayTextWeak },
|
|
741
671
|
emptyContainer: {
|
|
742
672
|
flex: 1,
|
|
743
673
|
alignItems: 'center',
|
|
@@ -753,7 +683,7 @@ const getRawStyles = (colors) => ({
|
|
|
753
683
|
alignItems: 'center',
|
|
754
684
|
justifyContent: 'center',
|
|
755
685
|
marginBottom: 20,
|
|
756
|
-
shadowColor:
|
|
686
|
+
shadowColor: colors.black,
|
|
757
687
|
shadowOffset: { width: 0, height: 2 },
|
|
758
688
|
shadowOpacity: 0.06,
|
|
759
689
|
shadowRadius: 4,
|
|
@@ -787,7 +717,7 @@ const getRawStyles = (colors) => ({
|
|
|
787
717
|
elevation: 5,
|
|
788
718
|
},
|
|
789
719
|
reloadBtnText: {
|
|
790
|
-
color:
|
|
720
|
+
color: colors.white,
|
|
791
721
|
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
792
722
|
fontSize: 14,
|
|
793
723
|
letterSpacing: 0.3,
|
|
@@ -800,7 +730,7 @@ const getRawStyles = (colors) => ({
|
|
|
800
730
|
borderWidth: 1,
|
|
801
731
|
borderColor: colors.grayBorderSecondary,
|
|
802
732
|
backgroundColor: colors.primaryLight,
|
|
803
|
-
shadowColor:
|
|
733
|
+
shadowColor: colors.black,
|
|
804
734
|
shadowOffset: { width: 0, height: 2 },
|
|
805
735
|
shadowOpacity: 0.05,
|
|
806
736
|
shadowRadius: 4,
|
|
@@ -813,31 +743,6 @@ const getRawStyles = (colors) => ({
|
|
|
813
743
|
paddingBottom: 10,
|
|
814
744
|
},
|
|
815
745
|
detailInfoRight: { flexDirection: 'row', alignItems: 'center', gap: 6 },
|
|
816
|
-
detailMethodLabel: {
|
|
817
|
-
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
818
|
-
fontSize: 14,
|
|
819
|
-
letterSpacing: 0.5,
|
|
820
|
-
},
|
|
821
|
-
detailUrlContainer: {
|
|
822
|
-
backgroundColor: colors.grayBackground,
|
|
823
|
-
borderRadius: 10,
|
|
824
|
-
padding: 13,
|
|
825
|
-
borderWidth: 1,
|
|
826
|
-
borderColor: colors.grayBorderSecondary,
|
|
827
|
-
shadowColor: '#000000',
|
|
828
|
-
shadowOffset: { width: 0, height: 1 },
|
|
829
|
-
shadowOpacity: 0.04,
|
|
830
|
-
shadowRadius: 2,
|
|
831
|
-
elevation: 1,
|
|
832
|
-
},
|
|
833
|
-
detailUrl: {
|
|
834
|
-
fontFamily: AppFonts_1.AppFonts.interRegular,
|
|
835
|
-
color: colors.purple,
|
|
836
|
-
fontSize: 13,
|
|
837
|
-
lineHeight: 20,
|
|
838
|
-
textDecorationLine: 'underline',
|
|
839
|
-
letterSpacing: 0.2,
|
|
840
|
-
},
|
|
841
746
|
metaContainer: {
|
|
842
747
|
backgroundColor: colors.primaryLight,
|
|
843
748
|
borderWidth: 1,
|
|
@@ -845,7 +750,7 @@ const getRawStyles = (colors) => ({
|
|
|
845
750
|
borderRadius: 14,
|
|
846
751
|
marginBottom: 12,
|
|
847
752
|
overflow: 'hidden',
|
|
848
|
-
shadowColor:
|
|
753
|
+
shadowColor: colors.black,
|
|
849
754
|
shadowOffset: { width: 0, height: 2 },
|
|
850
755
|
shadowOpacity: 0.05,
|
|
851
756
|
shadowRadius: 4,
|
|
@@ -868,11 +773,6 @@ const getRawStyles = (colors) => ({
|
|
|
868
773
|
letterSpacing: 0.6,
|
|
869
774
|
textTransform: 'uppercase',
|
|
870
775
|
},
|
|
871
|
-
metaChevron: {
|
|
872
|
-
fontFamily: AppFonts_1.AppFonts.interRegular,
|
|
873
|
-
color: colors.grayTextWeak,
|
|
874
|
-
fontSize: 11,
|
|
875
|
-
},
|
|
876
776
|
metaBody: { paddingHorizontal: 12, paddingBottom: 8, paddingTop: 4 },
|
|
877
777
|
metaRow: {
|
|
878
778
|
flexDirection: 'row',
|
|
@@ -883,7 +783,7 @@ const getRawStyles = (colors) => ({
|
|
|
883
783
|
metaDivider: { height: 1, backgroundColor: colors.dividerColor },
|
|
884
784
|
metaLabelRow: { flexDirection: 'row', alignItems: 'center', gap: 8 },
|
|
885
785
|
metaLabel: {
|
|
886
|
-
fontFamily: AppFonts_1.AppFonts.
|
|
786
|
+
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
887
787
|
color: colors.grayText,
|
|
888
788
|
fontSize: 13,
|
|
889
789
|
},
|
|
@@ -903,11 +803,6 @@ const getRawStyles = (colors) => ({
|
|
|
903
803
|
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
904
804
|
fontSize: 11,
|
|
905
805
|
},
|
|
906
|
-
seperator: {
|
|
907
|
-
height: 1,
|
|
908
|
-
backgroundColor: colors.dividerColor,
|
|
909
|
-
marginVertical: 10,
|
|
910
|
-
},
|
|
911
806
|
detailSearchRow: {
|
|
912
807
|
flexDirection: 'row',
|
|
913
808
|
alignItems: 'center',
|
|
@@ -939,7 +834,7 @@ const getRawStyles = (colors) => ({
|
|
|
939
834
|
overflow: 'hidden',
|
|
940
835
|
},
|
|
941
836
|
sectionHeaderGradient: {
|
|
942
|
-
backgroundColor:
|
|
837
|
+
backgroundColor: colors.grayBackground,
|
|
943
838
|
paddingVertical: 12,
|
|
944
839
|
paddingHorizontal: 8,
|
|
945
840
|
borderBottomWidth: 1,
|
|
@@ -1122,26 +1017,29 @@ const getRawStyles = (colors) => ({
|
|
|
1122
1017
|
},
|
|
1123
1018
|
codeSyntax: {
|
|
1124
1019
|
color: colors.grayTextWeak,
|
|
1125
|
-
fontFamily:
|
|
1020
|
+
fontFamily: AppFonts_1.AppFonts.interRegular,
|
|
1021
|
+
fontSize: 12.5,
|
|
1022
|
+
lineHeight: 18,
|
|
1126
1023
|
},
|
|
1127
1024
|
codeKey: {
|
|
1128
1025
|
color: colors.purple,
|
|
1129
|
-
fontFamily:
|
|
1026
|
+
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
1027
|
+
fontSize: 12.5,
|
|
1028
|
+
lineHeight: 18,
|
|
1130
1029
|
},
|
|
1131
1030
|
codeText: {
|
|
1132
1031
|
color: colors.greenBaggageText,
|
|
1133
|
-
fontFamily:
|
|
1032
|
+
fontFamily: AppFonts_1.AppFonts.interRegular,
|
|
1033
|
+
fontSize: 12.5,
|
|
1034
|
+
lineHeight: 18,
|
|
1134
1035
|
},
|
|
1135
1036
|
codeTextNil: {
|
|
1136
1037
|
color: colors.errorColor,
|
|
1137
|
-
fontFamily:
|
|
1038
|
+
fontFamily: AppFonts_1.AppFonts.interMedium,
|
|
1039
|
+
fontSize: 12.5,
|
|
1040
|
+
lineHeight: 18,
|
|
1138
1041
|
},
|
|
1139
1042
|
treeRow: { flexDirection: 'row', alignItems: 'center', paddingVertical: 6 },
|
|
1140
|
-
treeChevron: {
|
|
1141
|
-
fontFamily: AppFonts_1.AppFonts.interRegular,
|
|
1142
|
-
color: colors.grayTextWeak,
|
|
1143
|
-
marginRight: 8,
|
|
1144
|
-
},
|
|
1145
1043
|
treeKeyMargin: { marginRight: 6 },
|
|
1146
1044
|
highlight: {
|
|
1147
1045
|
backgroundColor: colors.paleYellow,
|
|
@@ -1181,17 +1079,17 @@ const getRawStyles = (colors) => ({
|
|
|
1181
1079
|
},
|
|
1182
1080
|
diffAdded: {
|
|
1183
1081
|
color: colors.greenColor,
|
|
1184
|
-
fontFamily:
|
|
1082
|
+
fontFamily: AppFonts_1.AppFonts.interRegular,
|
|
1185
1083
|
fontSize: 12,
|
|
1186
1084
|
},
|
|
1187
1085
|
diffRemoved: {
|
|
1188
1086
|
color: colors.errorColor,
|
|
1189
|
-
fontFamily:
|
|
1087
|
+
fontFamily: AppFonts_1.AppFonts.interRegular,
|
|
1190
1088
|
fontSize: 12,
|
|
1191
1089
|
},
|
|
1192
1090
|
diffChanged: {
|
|
1193
1091
|
color: colors.lightOrange,
|
|
1194
|
-
fontFamily:
|
|
1092
|
+
fontFamily: AppFonts_1.AppFonts.interRegular,
|
|
1195
1093
|
fontSize: 12,
|
|
1196
1094
|
},
|
|
1197
1095
|
filePreviewNode: { paddingVertical: 8, marginVertical: 4 },
|
|
@@ -1252,10 +1150,10 @@ const getRawStyles = (colors) => ({
|
|
|
1252
1150
|
width: 36,
|
|
1253
1151
|
height: 36,
|
|
1254
1152
|
borderRadius: 18,
|
|
1255
|
-
backgroundColor:
|
|
1153
|
+
backgroundColor: `${colors.white}E6`,
|
|
1256
1154
|
alignItems: 'center',
|
|
1257
1155
|
justifyContent: 'center',
|
|
1258
|
-
shadowColor:
|
|
1156
|
+
shadowColor: colors.black,
|
|
1259
1157
|
shadowOffset: { width: 0, height: 2 },
|
|
1260
1158
|
shadowOpacity: 0.2,
|
|
1261
1159
|
shadowRadius: 4,
|
|
@@ -1323,7 +1221,7 @@ const getRawStyles = (colors) => ({
|
|
|
1323
1221
|
paddingVertical: 10,
|
|
1324
1222
|
borderBottomWidth: 1,
|
|
1325
1223
|
borderBottomColor: colors.dividerColor,
|
|
1326
|
-
backgroundColor:
|
|
1224
|
+
backgroundColor: colors.grayBackground,
|
|
1327
1225
|
},
|
|
1328
1226
|
paramsAccordionLeft: {
|
|
1329
1227
|
flexDirection: 'row',
|
|
@@ -1396,64 +1294,10 @@ const getRawStyles = (colors) => ({
|
|
|
1396
1294
|
fontSize: 12,
|
|
1397
1295
|
},
|
|
1398
1296
|
// ─── Tab Bar ───────────────────────────────────────────────────────────────
|
|
1399
|
-
tabBar: {
|
|
1400
|
-
flexDirection: 'row',
|
|
1401
|
-
backgroundColor: colors.grayBackground,
|
|
1402
|
-
paddingHorizontal: 12,
|
|
1403
|
-
paddingTop: 10,
|
|
1404
|
-
paddingBottom: 4,
|
|
1405
|
-
gap: 8,
|
|
1406
|
-
},
|
|
1407
|
-
tabItem: {
|
|
1408
|
-
paddingHorizontal: 16,
|
|
1409
|
-
paddingVertical: 8,
|
|
1410
|
-
borderRadius: 10,
|
|
1411
|
-
alignItems: 'center',
|
|
1412
|
-
justifyContent: 'center',
|
|
1413
|
-
backgroundColor: '#EDEDF4',
|
|
1414
|
-
},
|
|
1415
|
-
tabItemActive: {
|
|
1416
|
-
backgroundColor: colors.purple,
|
|
1417
|
-
shadowColor: colors.purple,
|
|
1418
|
-
shadowOpacity: 0.3,
|
|
1419
|
-
shadowRadius: 6,
|
|
1420
|
-
shadowOffset: { width: 0, height: 2 },
|
|
1421
|
-
elevation: 3,
|
|
1422
|
-
},
|
|
1423
|
-
tabText: {
|
|
1424
|
-
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
1425
|
-
fontSize: 13,
|
|
1426
|
-
color: colors.grayText,
|
|
1427
|
-
},
|
|
1428
|
-
tabTextActive: {
|
|
1429
|
-
color: '#FFFFFF',
|
|
1430
|
-
},
|
|
1431
1297
|
// ─── Screen Grouping Headers ───────────────────────────────────────────────
|
|
1432
|
-
screenSectionHeader: {
|
|
1433
|
-
flexDirection: 'row',
|
|
1434
|
-
alignItems: 'center',
|
|
1435
|
-
justifyContent: 'space-between',
|
|
1436
|
-
paddingHorizontal: 16,
|
|
1437
|
-
paddingVertical: 12,
|
|
1438
|
-
backgroundColor: '#F7F7FA',
|
|
1439
|
-
borderTopWidth: 1,
|
|
1440
|
-
borderBottomWidth: 1,
|
|
1441
|
-
borderColor: colors.grayBorderSecondary,
|
|
1442
|
-
marginTop: 8,
|
|
1443
|
-
},
|
|
1444
|
-
screenSectionTitle: {
|
|
1445
|
-
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
1446
|
-
fontSize: 13,
|
|
1447
|
-
color: colors.primaryBlack,
|
|
1448
|
-
},
|
|
1449
|
-
screenSectionCount: {
|
|
1450
|
-
fontFamily: AppFonts_1.AppFonts.interMedium,
|
|
1451
|
-
fontSize: 12,
|
|
1452
|
-
color: colors.grayText,
|
|
1453
|
-
},
|
|
1454
1298
|
modalBackdrop: {
|
|
1455
1299
|
flex: 1,
|
|
1456
|
-
backgroundColor:
|
|
1300
|
+
backgroundColor: `${colors.black}73`,
|
|
1457
1301
|
justifyContent: 'flex-end',
|
|
1458
1302
|
},
|
|
1459
1303
|
modalBackdropPressable: {
|
|
@@ -1465,7 +1309,7 @@ const getRawStyles = (colors) => ({
|
|
|
1465
1309
|
borderTopLeftRadius: 20,
|
|
1466
1310
|
borderTopRightRadius: 20,
|
|
1467
1311
|
overflow: 'hidden',
|
|
1468
|
-
shadowColor:
|
|
1312
|
+
shadowColor: colors.black,
|
|
1469
1313
|
shadowOffset: { width: 0, height: -4 },
|
|
1470
1314
|
shadowOpacity: 0.15,
|
|
1471
1315
|
shadowRadius: 10,
|
|
@@ -1504,85 +1348,8 @@ const getRawStyles = (colors) => ({
|
|
|
1504
1348
|
color: colors.grayText,
|
|
1505
1349
|
},
|
|
1506
1350
|
contentTabButtonTextActive: {
|
|
1507
|
-
color:
|
|
1508
|
-
fontWeight: 'bold',
|
|
1509
|
-
},
|
|
1510
|
-
insightsContainer: {
|
|
1511
|
-
flex: 1,
|
|
1512
|
-
backgroundColor: colors.grayBackground,
|
|
1513
|
-
},
|
|
1514
|
-
insightsContent: {
|
|
1515
|
-
padding: 10,
|
|
1516
|
-
paddingBottom: 24,
|
|
1517
|
-
},
|
|
1518
|
-
dashboardContainer: {
|
|
1519
|
-
gap: 10,
|
|
1520
|
-
},
|
|
1521
|
-
dashboardModuleCard: {
|
|
1522
|
-
backgroundColor: colors.primaryLight,
|
|
1523
|
-
borderRadius: 10,
|
|
1524
|
-
borderWidth: 1,
|
|
1525
|
-
borderColor: colors.grayBorderSecondary,
|
|
1526
|
-
padding: 12,
|
|
1527
|
-
shadowColor: '#000000',
|
|
1528
|
-
shadowOpacity: 0.03,
|
|
1529
|
-
shadowRadius: 4,
|
|
1530
|
-
shadowOffset: { width: 0, height: 1 },
|
|
1531
|
-
elevation: 1,
|
|
1532
|
-
},
|
|
1533
|
-
dashboardModuleHeader: {
|
|
1534
|
-
flexDirection: 'row',
|
|
1535
|
-
justifyContent: 'space-between',
|
|
1536
|
-
alignItems: 'center',
|
|
1537
|
-
marginBottom: 10,
|
|
1538
|
-
borderBottomWidth: 1,
|
|
1539
|
-
borderBottomColor: colors.dividerColor,
|
|
1540
|
-
paddingBottom: 8,
|
|
1541
|
-
},
|
|
1542
|
-
dashboardModuleTitle: {
|
|
1543
|
-
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
1544
|
-
fontSize: 13,
|
|
1545
|
-
color: colors.primaryBlack,
|
|
1546
|
-
},
|
|
1547
|
-
dashboardModuleGoText: {
|
|
1351
|
+
color: colors.white,
|
|
1548
1352
|
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
1549
|
-
fontSize: 11,
|
|
1550
|
-
color: colors.purple,
|
|
1551
|
-
},
|
|
1552
|
-
dashboardModuleGrid: {
|
|
1553
|
-
flexDirection: 'row',
|
|
1554
|
-
flexWrap: 'wrap',
|
|
1555
|
-
justifyContent: 'space-between',
|
|
1556
|
-
gap: 8,
|
|
1557
|
-
},
|
|
1558
|
-
dashboardGridItem: {
|
|
1559
|
-
flex: 1,
|
|
1560
|
-
minWidth: '22%',
|
|
1561
|
-
backgroundColor: colors.grayBackground,
|
|
1562
|
-
borderRadius: 8,
|
|
1563
|
-
paddingVertical: 8,
|
|
1564
|
-
paddingHorizontal: 4,
|
|
1565
|
-
alignItems: 'center',
|
|
1566
|
-
justifyContent: 'center',
|
|
1567
|
-
},
|
|
1568
|
-
dashboardGridVal: {
|
|
1569
|
-
fontFamily: AppFonts_1.AppFonts.interBold,
|
|
1570
|
-
fontSize: 13,
|
|
1571
|
-
color: colors.primaryBlack,
|
|
1572
|
-
},
|
|
1573
|
-
dashboardGridLbl: {
|
|
1574
|
-
fontFamily: AppFonts_1.AppFonts.interMedium,
|
|
1575
|
-
fontSize: 10,
|
|
1576
|
-
color: colors.grayTextWeak,
|
|
1577
|
-
marginTop: 2,
|
|
1578
|
-
},
|
|
1579
|
-
analyticsCardRow: {},
|
|
1580
|
-
analyticsIconCircle: {
|
|
1581
|
-
width: 24,
|
|
1582
|
-
height: 24,
|
|
1583
|
-
borderRadius: 12,
|
|
1584
|
-
alignItems: 'center',
|
|
1585
|
-
justifyContent: 'center',
|
|
1586
1353
|
},
|
|
1587
1354
|
analyticsHeaderCard: {
|
|
1588
1355
|
backgroundColor: colors.primaryLight,
|
|
@@ -1593,7 +1360,7 @@ const getRawStyles = (colors) => ({
|
|
|
1593
1360
|
marginHorizontal: 12,
|
|
1594
1361
|
marginTop: 8,
|
|
1595
1362
|
marginBottom: 8,
|
|
1596
|
-
shadowColor:
|
|
1363
|
+
shadowColor: colors.black,
|
|
1597
1364
|
shadowOpacity: 0.03,
|
|
1598
1365
|
shadowRadius: 4,
|
|
1599
1366
|
shadowOffset: { width: 0, height: 1 },
|
|
@@ -1703,6 +1470,7 @@ rebuildStyles(false);
|
|
|
1703
1470
|
const toggleGlobalTheme = (isDark) => {
|
|
1704
1471
|
(0, AppColors_1.updateAppColorsTheme)(isDark);
|
|
1705
1472
|
rebuildStyles(isDark);
|
|
1473
|
+
(0, common_1.rebuildCommonStyles)(isDark ? (0, AppColors_1.getThemeColors)(true) : AppColors_1.default);
|
|
1706
1474
|
};
|
|
1707
1475
|
exports.toggleGlobalTheme = toggleGlobalTheme;
|
|
1708
1476
|
exports.default = styles;
|