@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.
@@ -3,3 +3,4 @@ import "./theme/fonts/OpenSans.css";
3
3
  import "./theme/fonts/NotoSans.css";
4
4
  import "./theme/fonts/Inter.css";
5
5
  export * from "./lib";
6
+ export * from "./theme";
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { MenuDropdownProps } from "./MenuDropdown";
2
3
  import { Story } from "@storybook/react";
3
4
  declare const MenuDropdownStories: {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { NotificationsBarProps } from "./NotificationsBar";
2
3
  import { Story } from "@storybook/react";
3
4
  declare const SearchStories: {
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  declare const TesterToast: () => JSX.Element;
2
3
  export default TesterToast;
@@ -1,4 +1,4 @@
1
- import { AppTheme } from "../types";
1
+ import { AppTheme } from "./types";
2
2
  import "./fonts/ProximaNova.css";
3
3
  declare const defaultTheme: AppTheme;
4
4
  export default defaultTheme;
@@ -1,3 +1,3 @@
1
- import { AppTheme } from "../types";
1
+ import { AppTheme } from "./types";
2
2
  declare const contaEscolaTheme: AppTheme;
3
3
  export default contaEscolaTheme;
@@ -1,3 +1,3 @@
1
- import { AppTheme } from "../types";
1
+ import { AppTheme } from "./types";
2
2
  declare const UITheme: AppTheme;
3
3
  export default UITheme;
@@ -1,3 +1,3 @@
1
- import { AppTheme } from "../types";
1
+ import { AppTheme } from "./types";
2
2
  declare const pagcondominioTheme: AppTheme;
3
3
  export default pagcondominioTheme;
@@ -1,3 +1,3 @@
1
- import { AppTheme } from "../types";
1
+ import { AppTheme } from "./types";
2
2
  declare const prosperitaTheme: AppTheme;
3
3
  export default prosperitaTheme;
@@ -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
+ };