@popmenu/admin-ui 0.60.0 → 0.62.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.
- package/build/components/FullScreenStepper/FullScreenStepperProps.d.ts +4 -0
- package/build/components/FullScreenStepperActions/FullScreenStepperActionsProps.d.ts +9 -0
- package/build/components/FullScreenStepperActions/index.d.ts +1 -0
- package/build/components/index.d.ts +2 -0
- package/build/index.es.js +40 -17
- package/build/index.es.js.map +1 -1
- package/build/index.js +63 -16
- package/build/index.js.map +1 -1
- package/build/theme/adminDarkTheme.d.ts +22 -1
- package/build/theme/adminLightTheme.d.ts +21 -1
- package/build/theme/customThemeProperties.d.ts +8 -0
- package/build/theme/overrides.d.ts +14 -0
- package/build/theme/props.d.ts +8 -0
- package/package.json +2 -2
|
@@ -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;
|
|
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
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@popmenu/admin-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.62.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": "
|
|
35
|
+
"gitHead": "ef83e972a11df3bc7b0d75d9cf35675f9a7dd2b0"
|
|
36
36
|
}
|