@mvf/external-components 1.11.2 → 1.11.3
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/Applications/Chameleon/CheckBoxQuestionSection/useCheckBoxQuestionSectionStyles.js +1 -1
- package/Applications/Chameleon/CheckBoxQuestionSection/useCheckBoxQuestionSectionStyles.js.map +1 -1
- package/Applications/Chameleon/RadioIconQuestionSection/useRadioIconQuestionSectionStyles.js +1 -1
- package/Applications/Chameleon/RadioIconQuestionSection/useRadioIconQuestionSectionStyles.js.map +1 -1
- package/Applications/Chameleon/TextFieldQuestionSection/useTextFieldQuestionSectionStyles.js +1 -1
- package/Applications/Chameleon/TextFieldQuestionSection/useTextFieldQuestionSectionStyles.js.map +1 -1
- package/Applications/Chameleon/ThankYouSection/useThankYouSectionStyles.js +1 -1
- package/Applications/Chameleon/ThankYouSection/useThankYouSectionStyles.js.map +1 -1
- package/Components/Atoms/Button/useButtonClasses.js +1 -1
- package/Components/Atoms/CardButton/useCardButtonClasses.js +1 -1
- package/Components/Atoms/IFrameWrapper/useIFrameWrapperStyles.js +1 -1
- package/Components/Atoms/IFrameWrapper/useIFrameWrapperStyles.js.map +1 -1
- package/Components/Atoms/IconButton/useIconButtonClasses.js +3 -3
- package/Components/Atoms/IconButton/useIconButtonClasses.js.map +1 -1
- package/Components/Atoms/Modal/useModalClasses.js +1 -1
- package/Components/Atoms/Modal/useModalClasses.js.map +1 -1
- package/Components/Atoms/Text/makeTextStyles.js +1 -1
- package/Components/Atoms/Text/makeTextStyles.js.map +1 -1
- package/Components/Atoms/TextField/useTextFieldStyles.js +2 -2
- package/Components/Atoms/TextField/useTextFieldStyles.js.map +1 -1
- package/Components/Molecules/DropDownSelect/useDropDownSelectStyles.js +1 -1
- package/Components/Molecules/DropDownSelect/useDropDownSelectStyles.js.map +1 -1
- package/Components/Molecules/ScrollArea/useScrollAreaClasses.js +1 -1
- package/Components/Molecules/ThankYouBanner/useThankYouBannerClasses.js +1 -1
- package/Components/Molecules/ThankYouBanner/useThankYouBannerClasses.js.map +1 -1
- package/Themes/defaultTheme.d.ts +33 -155
- package/Themes/defaultTheme.js +14 -236
- package/Themes/defaultTheme.js.map +1 -1
- package/Themes/palettes.d.ts +95 -0
- package/Themes/palettes.js +14 -0
- package/Themes/palettes.js.map +1 -0
- package/Themes/startupsTheme.d.ts +31 -154
- package/Themes/startupsTheme.js +13 -235
- package/Themes/startupsTheme.js.map +1 -1
- package/Themes/techcoTheme.d.ts +31 -154
- package/Themes/techcoTheme.js +13 -235
- package/Themes/techcoTheme.js.map +1 -1
- package/Themes/themeCreator.d.ts +320 -0
- package/Themes/themeCreator.js +258 -0
- package/Themes/themeCreator.js.map +1 -0
- package/Themes/themes.d.ts +189 -64
- package/Themes/themes.js +2 -0
- package/Themes/themes.js.map +1 -1
- package/package.json +1 -1
package/Themes/defaultTheme.js
CHANGED
|
@@ -1,19 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
var
|
|
5
|
-
|
|
6
|
+
exports.defaultPalette = void 0;
|
|
7
|
+
var themeCreator_1 = __importDefault(require("./themeCreator"));
|
|
8
|
+
exports.defaultPalette = {
|
|
6
9
|
primary: 'rgb(26, 155, 219)',
|
|
7
|
-
background: 'rgb(178, 178, 178)',
|
|
8
|
-
paper: {
|
|
9
|
-
default: 'rgb(253,253,253)',
|
|
10
|
-
note: 'rgb(247, 247, 247)',
|
|
11
|
-
},
|
|
12
10
|
accent: {
|
|
13
11
|
a: 'rgb(13, 165, 135)',
|
|
14
12
|
aHover: 'rgb(0,117,90)',
|
|
15
13
|
b: 'rgb(55, 84, 160)',
|
|
16
14
|
},
|
|
15
|
+
background: {
|
|
16
|
+
main: 'rgb(253,253,253)',
|
|
17
|
+
light: 'rgb(247, 247, 247)',
|
|
18
|
+
dim: 'rgb(237,237,237)',
|
|
19
|
+
dark: 'rgb(223,223,223)',
|
|
20
|
+
},
|
|
17
21
|
disabled: 'rgb(134, 134, 134)',
|
|
18
22
|
error: 'rgb(249, 98, 78)',
|
|
19
23
|
text: {
|
|
@@ -22,234 +26,8 @@ var palette = {
|
|
|
22
26
|
grey: 'rgb(79, 79, 79)',
|
|
23
27
|
accent: 'rgb(213, 37, 97)',
|
|
24
28
|
},
|
|
25
|
-
button: {
|
|
26
|
-
back: {
|
|
27
|
-
background: 'rgb(237,237,237)',
|
|
28
|
-
hover: 'rgb(223,223,223)',
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
icon: 'rgb(214,37,97)',
|
|
32
29
|
border: 'rgb(148, 148, 148)',
|
|
33
|
-
darken: {
|
|
34
|
-
gentle: 0.1,
|
|
35
|
-
medium: 0.3,
|
|
36
|
-
harsh: 0.5,
|
|
37
|
-
},
|
|
38
|
-
lighten: {
|
|
39
|
-
gentle: 0.1,
|
|
40
|
-
medium: 0.3,
|
|
41
|
-
strong: 0.7,
|
|
42
|
-
harsh: 0.9,
|
|
43
|
-
},
|
|
44
|
-
opacity: {
|
|
45
|
-
gentle: 0.8,
|
|
46
|
-
harsh: 0.05,
|
|
47
|
-
},
|
|
48
|
-
};
|
|
49
|
-
var spacing = {
|
|
50
|
-
tiny: '0.3rem',
|
|
51
|
-
little: '0.45rem',
|
|
52
|
-
small: '0.6rem',
|
|
53
|
-
medium: '1.2rem',
|
|
54
|
-
large: '2.5rem',
|
|
55
|
-
huge: '3rem',
|
|
56
|
-
massive: '4rem',
|
|
57
|
-
};
|
|
58
|
-
var border = {
|
|
59
|
-
width: {
|
|
60
|
-
thin: 1,
|
|
61
|
-
medium: 2,
|
|
62
|
-
},
|
|
63
|
-
radius: 4,
|
|
64
|
-
};
|
|
65
|
-
var boxShadow = {
|
|
66
|
-
light: 'rgb(0 0 0 / 20%) 0px 2px 1px -1px, rgb(0 0 0 / 14%) 0px 1px 1px 0px, rgb(0 0 0 / 12%) 0px 1px 3px 0px',
|
|
67
|
-
medium: 'rgb(0 0 0 / 20%) 0px 3px 1px -2px, rgb(0 0 0 / 14%) 0px 2px 2px 0px, rgb(0 0 0 / 12%) 0px 1px 5px 0px',
|
|
68
|
-
heavy: "rgb(0 0 0 / 20%) 0px 3px 3px -2px, rgb(0 0 0 / 14%) 0px 3px 4px 0px, rgb(0 0 0 / 12%) 0px 1px 8px 0px",
|
|
69
|
-
error: "0 0 0 1px " + palette.error,
|
|
70
|
-
primary: "0 0 0 1px " + palette.primary,
|
|
71
|
-
};
|
|
72
|
-
var fontSize = {
|
|
73
|
-
tiny: '0.65rem',
|
|
74
|
-
little: '0.75rem',
|
|
75
|
-
small: '0.875rem',
|
|
76
|
-
medium: '1rem',
|
|
77
|
-
large: '1.2rem',
|
|
78
|
-
huge: '1.5rem',
|
|
79
|
-
};
|
|
80
|
-
var frameSize = {
|
|
81
|
-
maxHeight: 575,
|
|
82
|
-
minHeight: 550,
|
|
83
|
-
maxWidth: 600,
|
|
84
|
-
minWidth: 300,
|
|
85
|
-
};
|
|
86
|
-
var lineHeight = {
|
|
87
|
-
small: '1.2',
|
|
88
|
-
medium: '1.5',
|
|
89
|
-
};
|
|
90
|
-
var baseTheme = (0, styles_1.createTheme)({
|
|
91
|
-
palette: {
|
|
92
|
-
primary: {
|
|
93
|
-
main: palette.primary,
|
|
94
|
-
},
|
|
95
|
-
secondary: {
|
|
96
|
-
main: palette.accent.a,
|
|
97
|
-
},
|
|
98
|
-
},
|
|
99
|
-
typography: {
|
|
100
|
-
fontFamily: "'Arial', sans-serif",
|
|
101
|
-
},
|
|
102
|
-
breakpoints: {
|
|
103
|
-
values: {
|
|
104
|
-
xs: 0,
|
|
105
|
-
sm: 350,
|
|
106
|
-
md: 508,
|
|
107
|
-
lg: 1280,
|
|
108
|
-
xl: 1920,
|
|
109
|
-
},
|
|
110
|
-
},
|
|
111
|
-
overrides: {
|
|
112
|
-
MuiButtonBase: {
|
|
113
|
-
root: {
|
|
114
|
-
backgroundColor: 'initial',
|
|
115
|
-
},
|
|
116
|
-
},
|
|
117
|
-
MuiButton: {
|
|
118
|
-
root: {
|
|
119
|
-
backgroundColor: 'initial',
|
|
120
|
-
minWidth: 50,
|
|
121
|
-
},
|
|
122
|
-
outlined: {
|
|
123
|
-
border: 'initial',
|
|
124
|
-
backgroundColor: 'initial',
|
|
125
|
-
'&$disabled': {
|
|
126
|
-
border: 'initial',
|
|
127
|
-
backgroundColor: 'initial',
|
|
128
|
-
},
|
|
129
|
-
},
|
|
130
|
-
contained: {
|
|
131
|
-
border: 'initial',
|
|
132
|
-
backgroundColor: 'initial',
|
|
133
|
-
'&$disabled': {
|
|
134
|
-
border: 'initial',
|
|
135
|
-
backgroundColor: 'initial',
|
|
136
|
-
},
|
|
137
|
-
},
|
|
138
|
-
},
|
|
139
|
-
MuiCardContent: {
|
|
140
|
-
root: {
|
|
141
|
-
'&:last-child': {
|
|
142
|
-
paddingBottom: spacing.medium,
|
|
143
|
-
},
|
|
144
|
-
},
|
|
145
|
-
},
|
|
146
|
-
MuiInput: {
|
|
147
|
-
underline: {
|
|
148
|
-
'&:hover:not($disabled):before': {
|
|
149
|
-
borderBottomColor: palette.border,
|
|
150
|
-
borderBottomWidth: border.width.thin,
|
|
151
|
-
},
|
|
152
|
-
},
|
|
153
|
-
},
|
|
154
|
-
MuiInputLabel: {
|
|
155
|
-
root: {
|
|
156
|
-
whiteSpace: 'nowrap',
|
|
157
|
-
overflow: 'hidden',
|
|
158
|
-
textOverflow: 'ellipsis',
|
|
159
|
-
maxWidth: '80%',
|
|
160
|
-
height: '100%',
|
|
161
|
-
},
|
|
162
|
-
shrink: {
|
|
163
|
-
maxWidth: '120%',
|
|
164
|
-
fontSize: '15px',
|
|
165
|
-
},
|
|
166
|
-
},
|
|
167
|
-
MuiSelect: {
|
|
168
|
-
select: {
|
|
169
|
-
'&:focus': {
|
|
170
|
-
backgroundColor: palette.paper.default,
|
|
171
|
-
},
|
|
172
|
-
},
|
|
173
|
-
},
|
|
174
|
-
MuiTableCell: {
|
|
175
|
-
root: {
|
|
176
|
-
padding: 'initial',
|
|
177
|
-
},
|
|
178
|
-
},
|
|
179
|
-
MuiTouchRipple: {
|
|
180
|
-
child: {
|
|
181
|
-
backgroundColor: palette.primary,
|
|
182
|
-
},
|
|
183
|
-
},
|
|
184
|
-
},
|
|
185
|
-
props: {
|
|
186
|
-
MuiCard: {
|
|
187
|
-
square: true,
|
|
188
|
-
},
|
|
189
|
-
},
|
|
190
|
-
});
|
|
191
|
-
var defaultTheme = {
|
|
192
|
-
mvf: {
|
|
193
|
-
border: border,
|
|
194
|
-
boxShadow: boxShadow,
|
|
195
|
-
fontSize: fontSize,
|
|
196
|
-
frameSize: frameSize,
|
|
197
|
-
lineHeight: lineHeight,
|
|
198
|
-
palette: palette,
|
|
199
|
-
spacing: spacing,
|
|
200
|
-
brandLogoName: 'expertMarket',
|
|
201
|
-
table: {
|
|
202
|
-
row: {
|
|
203
|
-
height: '1.5rem',
|
|
204
|
-
},
|
|
205
|
-
column: {
|
|
206
|
-
width: '5.0rem',
|
|
207
|
-
},
|
|
208
|
-
},
|
|
209
|
-
typography: {
|
|
210
|
-
p: {
|
|
211
|
-
size: '1rem',
|
|
212
|
-
},
|
|
213
|
-
h1: {
|
|
214
|
-
size: '2rem',
|
|
215
|
-
icon: '3rem',
|
|
216
|
-
},
|
|
217
|
-
h2: {
|
|
218
|
-
size: '1.5rem',
|
|
219
|
-
icon: '2.5rem',
|
|
220
|
-
},
|
|
221
|
-
h3: {
|
|
222
|
-
size: '1.2rem',
|
|
223
|
-
icon: '2rem',
|
|
224
|
-
},
|
|
225
|
-
h4: {
|
|
226
|
-
size: '0.96rem',
|
|
227
|
-
icon: '1.6rem',
|
|
228
|
-
},
|
|
229
|
-
h5: {
|
|
230
|
-
size: '0.78rem',
|
|
231
|
-
icon: '1.3rem',
|
|
232
|
-
},
|
|
233
|
-
h6: {
|
|
234
|
-
size: '0.6rem',
|
|
235
|
-
icon: '1rem',
|
|
236
|
-
},
|
|
237
|
-
subheader: {
|
|
238
|
-
fontFamily: "'Arial', sans-serif",
|
|
239
|
-
size: '1.5rem',
|
|
240
|
-
icon: '2.5rem',
|
|
241
|
-
},
|
|
242
|
-
button: {
|
|
243
|
-
large: '1.1rem',
|
|
244
|
-
},
|
|
245
|
-
weight: {
|
|
246
|
-
thin: 300,
|
|
247
|
-
medium: 400,
|
|
248
|
-
thick: 700,
|
|
249
|
-
},
|
|
250
|
-
fontFamily: "'Arial', sans-serif",
|
|
251
|
-
},
|
|
252
|
-
},
|
|
253
30
|
};
|
|
254
|
-
|
|
31
|
+
var defaultTheme = (0, themeCreator_1.default)(exports.defaultPalette);
|
|
32
|
+
exports.default = defaultTheme;
|
|
255
33
|
//# sourceMappingURL=defaultTheme.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defaultTheme.js","sourceRoot":"","sources":["../../src/Themes/defaultTheme.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"defaultTheme.js","sourceRoot":"","sources":["../../src/Themes/defaultTheme.ts"],"names":[],"mappings":";;;;;;AAAA,gEAA0C;AAE7B,QAAA,cAAc,GAAG;IAC5B,OAAO,EAAE,mBAAmB;IAC5B,MAAM,EAAE;QACN,CAAC,EAAE,mBAAmB;QACtB,MAAM,EAAE,eAAe;QACvB,CAAC,EAAE,kBAAkB;KACtB;IACD,UAAU,EAAE;QACV,IAAI,EAAE,kBAAkB;QACxB,KAAK,EAAE,oBAAoB;QAC3B,GAAG,EAAE,kBAAkB;QACvB,IAAI,EAAE,kBAAkB;KACzB;IACD,QAAQ,EAAE,oBAAoB;IAC9B,KAAK,EAAE,kBAAkB;IACzB,IAAI,EAAE;QACJ,KAAK,EAAE,oBAAoB;QAC3B,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,iBAAiB;QACvB,MAAM,EAAE,kBAAkB;KAC3B;IACD,MAAM,EAAE,oBAAoB;CAC7B,CAAC;AAEF,IAAM,YAAY,GAAG,IAAA,sBAAY,EAAC,sBAAc,CAAC,CAAC;AAIlD,kBAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
declare const palettes: {
|
|
2
|
+
default: {
|
|
3
|
+
primary: string;
|
|
4
|
+
accent: {
|
|
5
|
+
a: string;
|
|
6
|
+
aHover: string;
|
|
7
|
+
b: string;
|
|
8
|
+
};
|
|
9
|
+
background: {
|
|
10
|
+
main: string;
|
|
11
|
+
light: string;
|
|
12
|
+
dim: string;
|
|
13
|
+
dark: string;
|
|
14
|
+
};
|
|
15
|
+
disabled: string;
|
|
16
|
+
error: string;
|
|
17
|
+
text: {
|
|
18
|
+
light: string;
|
|
19
|
+
dark: string;
|
|
20
|
+
grey: string;
|
|
21
|
+
accent: string;
|
|
22
|
+
};
|
|
23
|
+
border: string;
|
|
24
|
+
};
|
|
25
|
+
startups: {
|
|
26
|
+
primary: string;
|
|
27
|
+
accent: {
|
|
28
|
+
a: string;
|
|
29
|
+
aHover: string;
|
|
30
|
+
b: string;
|
|
31
|
+
};
|
|
32
|
+
background: {
|
|
33
|
+
main: string;
|
|
34
|
+
light: string;
|
|
35
|
+
dim: string;
|
|
36
|
+
dark: string;
|
|
37
|
+
};
|
|
38
|
+
disabled: string;
|
|
39
|
+
error: string;
|
|
40
|
+
text: {
|
|
41
|
+
light: string;
|
|
42
|
+
dark: string;
|
|
43
|
+
grey: string;
|
|
44
|
+
accent: string;
|
|
45
|
+
};
|
|
46
|
+
border: string;
|
|
47
|
+
};
|
|
48
|
+
techco: {
|
|
49
|
+
primary: string;
|
|
50
|
+
accent: {
|
|
51
|
+
a: string;
|
|
52
|
+
aHover: string;
|
|
53
|
+
b: string;
|
|
54
|
+
};
|
|
55
|
+
background: {
|
|
56
|
+
main: string;
|
|
57
|
+
light: string;
|
|
58
|
+
dim: string;
|
|
59
|
+
dark: string;
|
|
60
|
+
};
|
|
61
|
+
disabled: string;
|
|
62
|
+
error: string;
|
|
63
|
+
text: {
|
|
64
|
+
light: string;
|
|
65
|
+
dark: string;
|
|
66
|
+
grey: string;
|
|
67
|
+
accent: string;
|
|
68
|
+
};
|
|
69
|
+
border: string;
|
|
70
|
+
};
|
|
71
|
+
base: {
|
|
72
|
+
primary: string;
|
|
73
|
+
accent: {
|
|
74
|
+
a: string;
|
|
75
|
+
aHover: string;
|
|
76
|
+
b: string;
|
|
77
|
+
};
|
|
78
|
+
background: {
|
|
79
|
+
main: string;
|
|
80
|
+
light: string;
|
|
81
|
+
dim: string;
|
|
82
|
+
dark: string;
|
|
83
|
+
};
|
|
84
|
+
disabled: string;
|
|
85
|
+
error: string;
|
|
86
|
+
text: {
|
|
87
|
+
light: string;
|
|
88
|
+
dark: string;
|
|
89
|
+
grey: string;
|
|
90
|
+
accent: string;
|
|
91
|
+
};
|
|
92
|
+
border: string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
export default palettes;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var defaultTheme_1 = require("./defaultTheme");
|
|
4
|
+
var startupsTheme_1 = require("./startupsTheme");
|
|
5
|
+
var techcoTheme_1 = require("./techcoTheme");
|
|
6
|
+
var themeCreator_1 = require("./themeCreator");
|
|
7
|
+
var palettes = {
|
|
8
|
+
default: defaultTheme_1.defaultPalette,
|
|
9
|
+
startups: startupsTheme_1.startupsPalette,
|
|
10
|
+
techco: techcoTheme_1.techcoPalette,
|
|
11
|
+
base: themeCreator_1.basePalette,
|
|
12
|
+
};
|
|
13
|
+
exports.default = palettes;
|
|
14
|
+
//# sourceMappingURL=palettes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"palettes.js","sourceRoot":"","sources":["../../src/Themes/palettes.ts"],"names":[],"mappings":";;AAAA,+CAAgD;AAChD,iDAAkD;AAClD,6CAA8C;AAC9C,+CAA6C;AAE7C,IAAM,QAAQ,GAAG;IACf,OAAO,EAAE,6BAAc;IACvB,QAAQ,EAAE,+BAAe;IACzB,MAAM,EAAE,2BAAa;IACrB,IAAI,EAAE,0BAAW;CAClB,CAAC;AAEF,kBAAe,QAAQ,CAAC"}
|
|
@@ -1,4 +1,27 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
export declare const startupsPalette: {
|
|
2
|
+
primary: string;
|
|
3
|
+
accent: {
|
|
4
|
+
a: string;
|
|
5
|
+
aHover: string;
|
|
6
|
+
b: string;
|
|
7
|
+
};
|
|
8
|
+
background: {
|
|
9
|
+
main: string;
|
|
10
|
+
light: string;
|
|
11
|
+
dim: string;
|
|
12
|
+
dark: string;
|
|
13
|
+
};
|
|
14
|
+
disabled: string;
|
|
15
|
+
error: string;
|
|
16
|
+
text: {
|
|
17
|
+
light: string;
|
|
18
|
+
dark: string;
|
|
19
|
+
grey: string;
|
|
20
|
+
accent: string;
|
|
21
|
+
};
|
|
22
|
+
border: string;
|
|
23
|
+
};
|
|
24
|
+
declare const startupsTheme: import("@material-ui/core").Theme & {
|
|
2
25
|
mvf: {
|
|
3
26
|
border: {
|
|
4
27
|
width: {
|
|
@@ -22,44 +45,7 @@ declare const startupsTheme: {
|
|
|
22
45
|
large: string;
|
|
23
46
|
huge: string;
|
|
24
47
|
};
|
|
25
|
-
|
|
26
|
-
maxHeight: number;
|
|
27
|
-
minHeight: number;
|
|
28
|
-
maxWidth: number;
|
|
29
|
-
minWidth: number;
|
|
30
|
-
};
|
|
31
|
-
lineHeight: {
|
|
32
|
-
small: string;
|
|
33
|
-
medium: string;
|
|
34
|
-
};
|
|
35
|
-
palette: {
|
|
36
|
-
primary: string;
|
|
37
|
-
background: string;
|
|
38
|
-
paper: {
|
|
39
|
-
default: string;
|
|
40
|
-
note: string;
|
|
41
|
-
};
|
|
42
|
-
accent: {
|
|
43
|
-
a: string;
|
|
44
|
-
aHover: string;
|
|
45
|
-
b: string;
|
|
46
|
-
};
|
|
47
|
-
button: {
|
|
48
|
-
back: {
|
|
49
|
-
background: string;
|
|
50
|
-
hover: string;
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
|
-
disabled: string;
|
|
54
|
-
error: string;
|
|
55
|
-
text: {
|
|
56
|
-
light: string;
|
|
57
|
-
dark: string;
|
|
58
|
-
grey: string;
|
|
59
|
-
accent: string;
|
|
60
|
-
};
|
|
61
|
-
icon: string;
|
|
62
|
-
border: string;
|
|
48
|
+
filters: {
|
|
63
49
|
darken: {
|
|
64
50
|
gentle: number;
|
|
65
51
|
medium: number;
|
|
@@ -76,94 +62,6 @@ declare const startupsTheme: {
|
|
|
76
62
|
harsh: number;
|
|
77
63
|
};
|
|
78
64
|
};
|
|
79
|
-
spacing: {
|
|
80
|
-
tiny: string;
|
|
81
|
-
little: string;
|
|
82
|
-
small: string;
|
|
83
|
-
medium: string;
|
|
84
|
-
large: string;
|
|
85
|
-
huge: string;
|
|
86
|
-
massive: string;
|
|
87
|
-
};
|
|
88
|
-
brandLogoName: string;
|
|
89
|
-
table: {
|
|
90
|
-
row: {
|
|
91
|
-
height: string;
|
|
92
|
-
};
|
|
93
|
-
column: {
|
|
94
|
-
width: string;
|
|
95
|
-
};
|
|
96
|
-
};
|
|
97
|
-
typography: {
|
|
98
|
-
p: {
|
|
99
|
-
size: string;
|
|
100
|
-
};
|
|
101
|
-
h1: {
|
|
102
|
-
size: string;
|
|
103
|
-
icon: string;
|
|
104
|
-
};
|
|
105
|
-
h2: {
|
|
106
|
-
size: string;
|
|
107
|
-
icon: string;
|
|
108
|
-
};
|
|
109
|
-
h3: {
|
|
110
|
-
size: string;
|
|
111
|
-
icon: string;
|
|
112
|
-
};
|
|
113
|
-
h4: {
|
|
114
|
-
size: string;
|
|
115
|
-
icon: string;
|
|
116
|
-
};
|
|
117
|
-
h5: {
|
|
118
|
-
size: string;
|
|
119
|
-
icon: string;
|
|
120
|
-
};
|
|
121
|
-
h6: {
|
|
122
|
-
size: string;
|
|
123
|
-
icon: string;
|
|
124
|
-
};
|
|
125
|
-
subheader: {
|
|
126
|
-
fontFamily: string;
|
|
127
|
-
size: string;
|
|
128
|
-
icon: string;
|
|
129
|
-
};
|
|
130
|
-
button: {
|
|
131
|
-
large: string;
|
|
132
|
-
};
|
|
133
|
-
weight: {
|
|
134
|
-
thin: number;
|
|
135
|
-
medium: number;
|
|
136
|
-
thick: number;
|
|
137
|
-
};
|
|
138
|
-
fontFamily: string;
|
|
139
|
-
};
|
|
140
|
-
};
|
|
141
|
-
};
|
|
142
|
-
export declare type IStartupTheme = typeof startupsTheme;
|
|
143
|
-
declare const _default: import("@material-ui/core/styles").Theme & {
|
|
144
|
-
mvf: {
|
|
145
|
-
border: {
|
|
146
|
-
width: {
|
|
147
|
-
thin: number;
|
|
148
|
-
medium: number;
|
|
149
|
-
};
|
|
150
|
-
radius: number;
|
|
151
|
-
};
|
|
152
|
-
boxShadow: {
|
|
153
|
-
light: string;
|
|
154
|
-
medium: string;
|
|
155
|
-
heavy: string;
|
|
156
|
-
error: string;
|
|
157
|
-
primary: string;
|
|
158
|
-
};
|
|
159
|
-
fontSize: {
|
|
160
|
-
tiny: string;
|
|
161
|
-
little: string;
|
|
162
|
-
small: string;
|
|
163
|
-
medium: string;
|
|
164
|
-
large: string;
|
|
165
|
-
huge: string;
|
|
166
|
-
};
|
|
167
65
|
frameSize: {
|
|
168
66
|
maxHeight: number;
|
|
169
67
|
minHeight: number;
|
|
@@ -176,21 +74,16 @@ declare const _default: import("@material-ui/core/styles").Theme & {
|
|
|
176
74
|
};
|
|
177
75
|
palette: {
|
|
178
76
|
primary: string;
|
|
179
|
-
background: string;
|
|
180
|
-
paper: {
|
|
181
|
-
default: string;
|
|
182
|
-
note: string;
|
|
183
|
-
};
|
|
184
77
|
accent: {
|
|
185
78
|
a: string;
|
|
186
79
|
aHover: string;
|
|
187
80
|
b: string;
|
|
188
81
|
};
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
82
|
+
background: {
|
|
83
|
+
main: string;
|
|
84
|
+
light: string;
|
|
85
|
+
dim: string;
|
|
86
|
+
dark: string;
|
|
194
87
|
};
|
|
195
88
|
disabled: string;
|
|
196
89
|
error: string;
|
|
@@ -200,23 +93,7 @@ declare const _default: import("@material-ui/core/styles").Theme & {
|
|
|
200
93
|
grey: string;
|
|
201
94
|
accent: string;
|
|
202
95
|
};
|
|
203
|
-
icon: string;
|
|
204
96
|
border: string;
|
|
205
|
-
darken: {
|
|
206
|
-
gentle: number;
|
|
207
|
-
medium: number;
|
|
208
|
-
harsh: number;
|
|
209
|
-
};
|
|
210
|
-
lighten: {
|
|
211
|
-
gentle: number;
|
|
212
|
-
medium: number;
|
|
213
|
-
strong: number;
|
|
214
|
-
harsh: number;
|
|
215
|
-
};
|
|
216
|
-
opacity: {
|
|
217
|
-
gentle: number;
|
|
218
|
-
harsh: number;
|
|
219
|
-
};
|
|
220
97
|
};
|
|
221
98
|
spacing: {
|
|
222
99
|
tiny: string;
|
|
@@ -281,4 +158,4 @@ declare const _default: import("@material-ui/core/styles").Theme & {
|
|
|
281
158
|
};
|
|
282
159
|
};
|
|
283
160
|
};
|
|
284
|
-
export default
|
|
161
|
+
export default startupsTheme;
|