@prosperitainova/mirage-ui 1.1.77 → 1.1.79
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/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/cjs/types/lib/MenuDropdown/MenuDropdown.stories.d.ts +1 -0
- package/dist/cjs/types/lib/NotificationsBar/NotificationsBar.stories.d.ts +1 -0
- package/dist/cjs/types/lib/Toast/TesterToast.d.ts +1 -0
- package/dist/cjs/types/theme/DefaultTheme.d.ts +1 -1
- package/dist/cjs/types/theme/contaEscolaTheme.d.ts +1 -1
- package/dist/cjs/types/theme/index.d.ts +1 -1
- package/dist/cjs/types/theme/pagCondominioTheme.d.ts +1 -1
- package/dist/cjs/types/theme/prosperitaTheme.d.ts +1 -1
- package/dist/cjs/types/theme/types.d.ts +59 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +1 -0
- package/dist/esm/types/lib/MenuDropdown/MenuDropdown.stories.d.ts +1 -0
- package/dist/esm/types/lib/NotificationsBar/NotificationsBar.stories.d.ts +1 -0
- package/dist/esm/types/lib/Toast/TesterToast.d.ts +1 -0
- package/dist/esm/types/theme/DefaultTheme.d.ts +1 -1
- package/dist/esm/types/theme/contaEscolaTheme.d.ts +1 -1
- package/dist/esm/types/theme/index.d.ts +1 -1
- package/dist/esm/types/theme/pagCondominioTheme.d.ts +1 -1
- package/dist/esm/types/theme/prosperitaTheme.d.ts +1 -1
- package/dist/esm/types/theme/types.d.ts +59 -0
- package/package.json +1 -1
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
export type AppTheme = {
|
|
2
|
+
colors: Colors;
|
|
3
|
+
fonts: Fonts;
|
|
4
|
+
};
|
|
5
|
+
export type Fonts = {
|
|
6
|
+
titles: Titles;
|
|
7
|
+
dialog: Dialog;
|
|
8
|
+
headline: Dialog;
|
|
9
|
+
card: Dialog;
|
|
10
|
+
tableHead: Dialog;
|
|
11
|
+
table: Dialog;
|
|
12
|
+
input: Dialog;
|
|
13
|
+
contentbody: Dialog;
|
|
14
|
+
contentmodal: Dialog;
|
|
15
|
+
complementarytext: Dialog;
|
|
16
|
+
};
|
|
17
|
+
export type Dialog = {
|
|
18
|
+
family: string;
|
|
19
|
+
color: string;
|
|
20
|
+
weigth: string;
|
|
21
|
+
size: string;
|
|
22
|
+
lineheight: string;
|
|
23
|
+
};
|
|
24
|
+
export type Titles = {
|
|
25
|
+
family: string;
|
|
26
|
+
color: string;
|
|
27
|
+
weigth: Weigth;
|
|
28
|
+
size: Weigth;
|
|
29
|
+
lineheight: Weigth;
|
|
30
|
+
};
|
|
31
|
+
export type Weigth = {
|
|
32
|
+
h2: string;
|
|
33
|
+
h3: string;
|
|
34
|
+
h4: string;
|
|
35
|
+
h5: string;
|
|
36
|
+
h6: string;
|
|
37
|
+
};
|
|
38
|
+
export type Colors = {
|
|
39
|
+
primary: colortype;
|
|
40
|
+
secondary: colortype;
|
|
41
|
+
base: colortype;
|
|
42
|
+
success: colortype;
|
|
43
|
+
info: colortype;
|
|
44
|
+
warning: colortype;
|
|
45
|
+
error: colortype;
|
|
46
|
+
};
|
|
47
|
+
export type colortype = {
|
|
48
|
+
main: string;
|
|
49
|
+
light100: string;
|
|
50
|
+
light200: string;
|
|
51
|
+
light300: string;
|
|
52
|
+
light400: string;
|
|
53
|
+
light500: string;
|
|
54
|
+
dark100: string;
|
|
55
|
+
dark200: string;
|
|
56
|
+
dark300: string;
|
|
57
|
+
dark400: string;
|
|
58
|
+
dark500: string;
|
|
59
|
+
};
|