@popmenu/admin-ui 0.39.0 → 0.40.1
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/index.es.js +58 -42
- package/build/index.es.js.map +1 -1
- package/build/index.js +58 -42
- package/build/index.js.map +1 -1
- package/build/theme/adminDarkTheme.d.ts +8 -0
- package/build/theme/adminLightTheme.d.ts +10 -3
- package/build/theme/palette.d.ts +10 -0
- package/package.json +2 -2
|
@@ -29,7 +29,6 @@ export declare const adminLightOptions: {
|
|
|
29
29
|
mobileStepper: number;
|
|
30
30
|
appBar: number;
|
|
31
31
|
drawer: number;
|
|
32
|
-
/** Legacy Properties. Avoid new usage. */
|
|
33
32
|
modal: number;
|
|
34
33
|
snackbar: number;
|
|
35
34
|
tooltip: number;
|
|
@@ -37,6 +36,14 @@ export declare const adminLightOptions: {
|
|
|
37
36
|
placeholder: string;
|
|
38
37
|
themeName: string;
|
|
39
38
|
palette: {
|
|
39
|
+
data: {
|
|
40
|
+
blue: {
|
|
41
|
+
main: string;
|
|
42
|
+
};
|
|
43
|
+
peach: {
|
|
44
|
+
main: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
40
47
|
type: string;
|
|
41
48
|
secondary: {
|
|
42
49
|
light: string;
|
|
@@ -78,7 +85,7 @@ export declare const adminLightOptions: {
|
|
|
78
85
|
dark: string;
|
|
79
86
|
};
|
|
80
87
|
blue: {
|
|
81
|
-
light: string;
|
|
88
|
+
light: string; /** Legacy Properties. Avoid new usage. */
|
|
82
89
|
main: string;
|
|
83
90
|
dark: string;
|
|
84
91
|
};
|
|
@@ -149,7 +156,7 @@ export declare const adminLightOptions: {
|
|
|
149
156
|
lineHeight: string;
|
|
150
157
|
};
|
|
151
158
|
h6: {
|
|
152
|
-
fontWeight: number;
|
|
159
|
+
fontWeight: number;
|
|
153
160
|
fontSize: string;
|
|
154
161
|
lineHeight: string;
|
|
155
162
|
};
|
package/build/theme/palette.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@popmenu/admin-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.40.1",
|
|
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": "59fd5c77547de5d77331d9f1fa74fcfba95192ff"
|
|
36
36
|
}
|