vinty-library 1.0.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/README.md +20 -0
- package/dist/Components/AmbienteBadge.d.ts +5 -0
- package/dist/Components/ContainerFields.d.ts +5 -0
- package/dist/Components/CustomSnackBar.d.ts +2 -0
- package/dist/Components/DataTable.d.ts +4 -0
- package/dist/Components/Filtros/FilterChips.d.ts +7 -0
- package/dist/Components/Filtros/FilterHistEmailErro.d.ts +2 -0
- package/dist/Components/GlobalSearchAutocomplete.d.ts +4 -0
- package/dist/Components/Icons/CustomIcon.d.ts +15 -0
- package/dist/Components/Icons/IconsSvg.d.ts +93 -0
- package/dist/Components/Icons/index.d.ts +2 -0
- package/dist/Components/Inputs/InputText.d.ts +7 -0
- package/dist/Components/Inputs/inputAutocomplete.d.ts +5 -0
- package/dist/Components/Inputs/inputCheck.d.ts +4 -0
- package/dist/Components/Inputs/inputDataPicker.d.ts +5 -0
- package/dist/Components/Inputs/inputRadio.d.ts +4 -0
- package/dist/Components/Inputs/inputTextArea.d.ts +5 -0
- package/dist/Components/Inputs/virtualKeyboard.d.ts +8 -0
- package/dist/Components/Modais/ModalConfirm.d.ts +17 -0
- package/dist/Components/Modais/ModalHistEmailErro.d.ts +8 -0
- package/dist/Components/NavBar/Demo.d.ts +2 -0
- package/dist/Components/NavBar/MenuNavbar.d.ts +10 -0
- package/dist/Components/NavBar/MenuNavbarMobile.d.ts +2 -0
- package/dist/Components/NavBar/ModalHistEmailErro.d.ts +8 -0
- package/dist/Components/NavBar/Navbar.d.ts +9 -0
- package/dist/Components/NavBar/Notificacao.d.ts +2 -0
- package/dist/Components/TitlePage.d.ts +7 -0
- package/dist/Contexts/AuthContext.d.ts +6 -0
- package/dist/Contexts/PrefsContext.d.ts +7 -0
- package/dist/Contexts/ThemeContext.d.ts +10 -0
- package/dist/GlobalStyle.d.ts +2 -0
- package/dist/GraphQL/mutations.d.ts +22 -0
- package/dist/GraphQL/queries.d.ts +56 -0
- package/dist/Helpers.d.ts +18 -0
- package/dist/Pages/Signin.d.ts +3 -0
- package/dist/Templates/Auth.d.ts +6 -0
- package/dist/Theme/breakpoints.d.ts +10 -0
- package/dist/Theme/components.d.ts +156 -0
- package/dist/Theme/index.d.ts +2 -0
- package/dist/Theme/shadows.d.ts +3 -0
- package/dist/Theme/typography.d.ts +3 -0
- package/dist/Theme/variants.d.ts +73 -0
- package/dist/Types/graphTypes.d.ts +947 -0
- package/dist/Types/types.d.ts +375 -0
- package/dist/auth.d.ts +4 -0
- package/dist/constants.d.ts +16 -0
- package/dist/hooks/useAuth.d.ts +2 -0
- package/dist/hooks/useCookies.d.ts +3 -0
- package/dist/hooks/useLocalStorage.d.ts +2 -0
- package/dist/hooks/usePrefs.d.ts +2 -0
- package/dist/hooks/useTheme.d.ts +5 -0
- package/dist/index.css +22 -0
- package/dist/index.d.ts +1331 -0
- package/dist/index.esm.css +22 -0
- package/dist/index.esm.js +45674 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +45736 -0
- package/dist/index.js.map +1 -0
- package/package.json +87 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
declare const variants: Array<VariantType>;
|
|
2
|
+
export default variants;
|
|
3
|
+
export type VariantType = {
|
|
4
|
+
name: string;
|
|
5
|
+
palette: {
|
|
6
|
+
primary: MainContrastTextType;
|
|
7
|
+
secondary: MainContrastTextType;
|
|
8
|
+
background: BackgroundType;
|
|
9
|
+
box: MainContrastTextType;
|
|
10
|
+
};
|
|
11
|
+
header: ColorBgType & {
|
|
12
|
+
search: {
|
|
13
|
+
color: string;
|
|
14
|
+
};
|
|
15
|
+
indicator: {
|
|
16
|
+
background: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
footer: ColorBgType;
|
|
20
|
+
sidebar: ColorBgType & {
|
|
21
|
+
header: ColorBgType & {
|
|
22
|
+
brand: {
|
|
23
|
+
color: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
footer: ColorBgType & {
|
|
27
|
+
online: {
|
|
28
|
+
background: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
badge: ColorBgType;
|
|
32
|
+
};
|
|
33
|
+
custom: {
|
|
34
|
+
primary: MainContrastTextType;
|
|
35
|
+
secondary: MainContrastTextType;
|
|
36
|
+
};
|
|
37
|
+
input: {
|
|
38
|
+
primary: MainContrastTextType;
|
|
39
|
+
secondary: MainContrastTextType;
|
|
40
|
+
};
|
|
41
|
+
customBox: {
|
|
42
|
+
primary: MainContrastTextType;
|
|
43
|
+
secondary: MainContrastTextType;
|
|
44
|
+
};
|
|
45
|
+
alterBox: {
|
|
46
|
+
primary: MainContrastTextType;
|
|
47
|
+
secondary: MainContrastTextType;
|
|
48
|
+
};
|
|
49
|
+
alterInput: {
|
|
50
|
+
primary: MainContrastTextType;
|
|
51
|
+
secondary: MainContrastTextType;
|
|
52
|
+
};
|
|
53
|
+
alterIcon: {
|
|
54
|
+
primary: MainContrastTextType;
|
|
55
|
+
secondary: MainContrastTextType;
|
|
56
|
+
};
|
|
57
|
+
zebraModeSelected: {
|
|
58
|
+
primary: MainContrastTextType;
|
|
59
|
+
secondary: MainContrastTextType;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
type MainContrastTextType = {
|
|
63
|
+
main: string;
|
|
64
|
+
contrastText: string;
|
|
65
|
+
};
|
|
66
|
+
type BackgroundType = {
|
|
67
|
+
paper: string;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
type ColorBgType = {
|
|
71
|
+
color: string;
|
|
72
|
+
background: string;
|
|
73
|
+
};
|