@popmenu/admin-ui 0.61.0 → 0.63.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.
@@ -19,6 +19,12 @@ export declare const adminDarkOptions: {
19
19
  MuiInputLabel: {
20
20
  color: string;
21
21
  };
22
+ MuiSwitch: {
23
+ color: string;
24
+ };
25
+ MuiTextField: {
26
+ variant: string;
27
+ };
22
28
  };
23
29
  status: {
24
30
  disabled: {
@@ -30,7 +36,7 @@ export declare const adminDarkOptions: {
30
36
  appBar: number;
31
37
  drawer: number;
32
38
  modal: number;
33
- snackbar: number;
39
+ snackbar: number; /** Legacy Properties. Avoid new usage. */
34
40
  tooltip: number;
35
41
  };
36
42
  placeholder: string;
@@ -46,6 +52,7 @@ export declare const adminDarkOptions: {
46
52
  };
47
53
  type: string;
48
54
  secondary: {
55
+ light: string;
49
56
  main: string;
50
57
  };
51
58
  surface: {
@@ -186,5 +193,19 @@ export declare const adminDarkOptions: {
186
193
  textTransform: string;
187
194
  };
188
195
  };
196
+ overrides: {
197
+ MuiSwitch: {
198
+ checked: {};
199
+ track: {};
200
+ switchBase: {
201
+ '&$checked': {
202
+ color: string;
203
+ '& + $track': {
204
+ background: string;
205
+ };
206
+ };
207
+ };
208
+ };
209
+ };
189
210
  };
190
211
  export declare const adminDark: import("@material-ui/core/styles/createTheme").Theme;
@@ -19,6 +19,12 @@ export declare const adminLightOptions: {
19
19
  MuiInputLabel: {
20
20
  color: string;
21
21
  };
22
+ MuiSwitch: {
23
+ color: string;
24
+ };
25
+ MuiTextField: {
26
+ variant: string;
27
+ };
22
28
  };
23
29
  status: {
24
30
  disabled: {
@@ -85,7 +91,7 @@ export declare const adminLightOptions: {
85
91
  dark: string;
86
92
  };
87
93
  blue: {
88
- light: string; /** Legacy Properties. Avoid new usage. */
94
+ light: string;
89
95
  main: string;
90
96
  dark: string;
91
97
  };
@@ -188,5 +194,19 @@ export declare const adminLightOptions: {
188
194
  textTransform: string;
189
195
  };
190
196
  };
197
+ overrides: {
198
+ MuiSwitch: {
199
+ checked: {};
200
+ track: {};
201
+ switchBase: {
202
+ '&$checked': {
203
+ color: string;
204
+ '& + $track': {
205
+ background: string;
206
+ };
207
+ };
208
+ };
209
+ };
210
+ };
191
211
  };
192
212
  export declare const adminLight: import("@material-ui/core/styles/createTheme").Theme;
@@ -29,6 +29,8 @@ export declare const adminThemeZIndex: {
29
29
  /** The defaults for MuiInputBase and MuiInputLabel can be removed once the BasicForm & 'shared' inputs have either:
30
30
  * 1. been refactored to use secondary color.
31
31
  * 2. been replaced with new common components.
32
+ *
33
+ * props as imported from './props' are part updated design system.
32
34
  */
33
35
  export declare const adminThemeDefaultProps: {
34
36
  props: {
@@ -51,5 +53,11 @@ export declare const adminThemeDefaultProps: {
51
53
  MuiInputLabel: {
52
54
  color: string;
53
55
  };
56
+ MuiSwitch: {
57
+ color: string;
58
+ };
59
+ MuiTextField: {
60
+ variant: string;
61
+ };
54
62
  };
55
63
  };
@@ -0,0 +1,14 @@
1
+ export declare const overrides: {
2
+ MuiSwitch: {
3
+ checked: {};
4
+ track: {};
5
+ switchBase: {
6
+ '&$checked': {
7
+ color: string;
8
+ '& + $track': {
9
+ background: string;
10
+ };
11
+ };
12
+ };
13
+ };
14
+ };
@@ -0,0 +1,8 @@
1
+ export declare const props: {
2
+ MuiSwitch: {
3
+ color: string;
4
+ };
5
+ MuiTextField: {
6
+ variant: string;
7
+ };
8
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@popmenu/admin-ui",
3
- "version": "0.61.0",
3
+ "version": "0.63.0",
4
4
  "license": "MIT",
5
5
  "author": "Popmenu Design System Team",
6
6
  "description": "React components specifically for the MyPop web app.",
@@ -32,5 +32,5 @@
32
32
  "acorn-jsx": "^5.3.2"
33
33
  },
34
34
  "sideEffects": false,
35
- "gitHead": "79da2f3f33a0df1e4d518474d6423715e7aaa277"
35
+ "gitHead": "d554d5c4017ea81f854e8357dd84eee013516c15"
36
36
  }