mgtypes 1.0.48 → 1.0.50

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mgtypes",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "description": "types for mg development",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -217,40 +217,68 @@ 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
- warningUnselected: string;
234
+
223
235
  locationPuck: string;
236
+
237
+ inverseSecondary: string;
238
+ inverseTertiary: string;
239
+
240
+ primaryContainerGradient: string;
241
+ secondaryContainerGradient: string;
242
+ tertiaryContainerGradient: string;
243
+
244
+
245
+ // ORIGINALS
246
+
224
247
  primary: string;
248
+ inversePrimary: string;
225
249
  onPrimary: string;
226
250
  primaryContainer: string;
227
251
  onPrimaryContainer: string;
228
- onPrimaryContainerUnselected: string;
252
+
229
253
  secondary: string;
230
254
  onSecondary: string;
231
255
  secondaryContainer: string;
232
256
  onSecondaryContainer: string;
257
+
233
258
  tertiary: string;
234
259
  onTertiary: string;
235
260
  tertiaryContainer: string;
236
261
  onTertiaryContainer: string;
262
+
237
263
  error: string;
238
264
  onError: string;
239
265
  errorContainer: string;
240
266
  onErrorContainer: string;
267
+
241
268
  background: string;
242
269
  onBackground: string;
243
270
  surface: string;
244
271
  onSurface: string;
245
272
  surfaceVariant: string;
246
273
  onSurfaceVariant: string;
274
+ inverseSurface: string;
275
+ inverseOnSurface: string;
276
+
247
277
  outline: string;
248
278
  outlineVariant: string;
249
279
  shadow: string;
250
280
  scrim: string;
251
- inverseSurface: string;
252
- inverseOnSurface: string;
253
- inversePrimary: string;
281
+
254
282
  elevation: {
255
283
  level0: string;
256
284
  level1: string;
@@ -259,6 +287,7 @@ export interface mgColorsConfig {
259
287
  level4: string;
260
288
  level5: string;
261
289
  };
290
+
262
291
  surfaceDisabled: string;
263
292
  onSurfaceDisabled: string;
264
293
  backdrop: string;