mgtypes 1.0.48 → 1.0.49
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/types/Configuration.ts +23 -2
package/package.json
CHANGED
package/types/Configuration.ts
CHANGED
|
@@ -217,27 +217,48 @@ export interface mgAuthenticationConfig {
|
|
|
217
217
|
* Configs based on React Native Paper color assignments w/ some extras
|
|
218
218
|
*/
|
|
219
219
|
export interface mgColorsConfig {
|
|
220
|
+
// NEW ONES
|
|
221
|
+
|
|
222
|
+
// mix and match for foregroungs/backgrounds
|
|
223
|
+
// on buttons, chips,
|
|
224
|
+
// snackbar, etc
|
|
225
|
+
light: string;
|
|
226
|
+
lightNeutral: string;
|
|
227
|
+
// dark neutral formerly onPrimaryContainerUnselected
|
|
228
|
+
darkNeutral: string;
|
|
229
|
+
dark: string;
|
|
230
|
+
|
|
231
|
+
|
|
220
232
|
success: string;
|
|
221
233
|
warning: string;
|
|
222
|
-
|
|
234
|
+
|
|
223
235
|
locationPuck: string;
|
|
236
|
+
|
|
237
|
+
inverseSecondary: string;
|
|
238
|
+
inverseTertiary: string;
|
|
239
|
+
|
|
240
|
+
// ORIGINALS
|
|
241
|
+
|
|
224
242
|
primary: string;
|
|
225
243
|
onPrimary: string;
|
|
226
244
|
primaryContainer: string;
|
|
227
245
|
onPrimaryContainer: string;
|
|
228
|
-
|
|
246
|
+
|
|
229
247
|
secondary: string;
|
|
230
248
|
onSecondary: string;
|
|
231
249
|
secondaryContainer: string;
|
|
232
250
|
onSecondaryContainer: string;
|
|
251
|
+
|
|
233
252
|
tertiary: string;
|
|
234
253
|
onTertiary: string;
|
|
235
254
|
tertiaryContainer: string;
|
|
236
255
|
onTertiaryContainer: string;
|
|
256
|
+
|
|
237
257
|
error: string;
|
|
238
258
|
onError: string;
|
|
239
259
|
errorContainer: string;
|
|
240
260
|
onErrorContainer: string;
|
|
261
|
+
|
|
241
262
|
background: string;
|
|
242
263
|
onBackground: string;
|
|
243
264
|
surface: string;
|