@okam/stack-ui 1.5.1 → 1.5.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/{ArrowDown-d86c375b.js → ArrowDown-3bfa6bcb.js} +1 -1
- package/{ArrowDown-3fcc21d2.mjs → ArrowDown-5cc91c04.mjs} +1 -1
- package/{ArrowLeft-270c6281.js → ArrowLeft-2fd6ca24.js} +1 -1
- package/{ArrowLeft-f7062072.mjs → ArrowLeft-e596cec4.mjs} +1 -1
- package/{BrandArrowRight-9fe9b317.js → BrandArrowRight-b8636fa7.js} +1 -1
- package/{BrandArrowRight-8d9155c6.mjs → BrandArrowRight-c46acbc0.mjs} +1 -1
- package/{Check-ea628715.js → Check-37311483.js} +1 -1
- package/{Check-9f1e21b7.mjs → Check-3e4d0fd0.mjs} +1 -1
- package/{ChevronLeft-02e9ce36.js → ChevronLeft-5148dd64.js} +1 -1
- package/{ChevronLeft-5cbe8d05.mjs → ChevronLeft-fedd6908.mjs} +1 -1
- package/{ChevronRight-0502f6aa.js → ChevronRight-22385d19.js} +1 -1
- package/{ChevronRight-4a48e57a.mjs → ChevronRight-bceb2aee.mjs} +1 -1
- package/{CloseBtn-f4c900f9.js → CloseBtn-40baf937.js} +1 -1
- package/{CloseBtn-4cd14581.mjs → CloseBtn-564c7c80.mjs} +1 -1
- package/{Facebook-40746ac1.js → Facebook-2941c77d.js} +1 -1
- package/{Facebook-d4816bdc.mjs → Facebook-9cad3546.mjs} +1 -1
- package/{FacebookColored-c657cc79.js → FacebookColored-298e6559.js} +1 -1
- package/{FacebookColored-5cd958a4.mjs → FacebookColored-301801bf.mjs} +1 -1
- package/{Globe-5ce2d913.js → Globe-476eb577.js} +1 -1
- package/{Globe-a6cf0e2c.mjs → Globe-9032be2c.mjs} +1 -1
- package/{Instagram-e2699ba5.mjs → Instagram-9497301d.mjs} +1 -1
- package/{Instagram-a8405182.js → Instagram-c95673fd.js} +1 -1
- package/{InstagramColored-56368129.mjs → InstagramColored-25f7e8cd.mjs} +1 -1
- package/{InstagramColored-5370e6ae.js → InstagramColored-beb2402e.js} +1 -1
- package/{Link-22ff14e3.js → Link-03954330.js} +1 -1
- package/{Link-ce681252.mjs → Link-1658139b.mjs} +1 -1
- package/{Mail-cac65d1c.js → Mail-1fcf7ef6.js} +1 -1
- package/{Mail-cd9799e7.mjs → Mail-414204dd.mjs} +1 -1
- package/{Plus-833cd1a9.mjs → Plus-652b12fe.mjs} +1 -1
- package/{Plus-8c742b40.js → Plus-c614a8d6.js} +1 -1
- package/{Share-98561f32.js → Share-b11f4d4f.js} +1 -1
- package/{Share-d92558f0.mjs → Share-f873b09c.mjs} +1 -1
- package/{Twitter-e3d29c19.js → Twitter-3b596861.js} +1 -1
- package/{Twitter-b7ceb5ab.mjs → Twitter-842aca2c.mjs} +1 -1
- package/{TwitterColored-f8e4eee7.mjs → TwitterColored-b6739045.mjs} +1 -1
- package/{TwitterColored-9a35d580.js → TwitterColored-ef9325be.js} +1 -1
- package/{Upload-3d57628d.js → Upload-2777b103.js} +1 -1
- package/{Upload-38698355.mjs → Upload-ee10032e.mjs} +1 -1
- package/{YouTube-302c72f5.js → YouTube-65ef678d.js} +1 -1
- package/{YouTube-d53b7370.mjs → YouTube-d9797ab0.mjs} +1 -1
- package/{YouTubeColored-be50dad1.js → YouTubeColored-6031da60.js} +1 -1
- package/{YouTubeColored-ac409038.mjs → YouTubeColored-62696ed3.mjs} +1 -1
- package/components/Icon/index.d.ts +1 -1
- package/index-de6017f0.mjs +20917 -0
- package/index-dec8f3fe.js +75 -0
- package/index.d.ts +5 -3
- package/index.js +1 -1
- package/index.mjs +34 -28
- package/package.json +11 -11
- package/providers/Client/index.d.ts +4 -0
- package/providers/Client/interface.d.ts +10 -0
- package/theme/Accordion/index.d.ts +154 -0
- package/theme/Box/index.d.ts +100 -0
- package/theme/Button/index.d.ts +70 -0
- package/theme/Calendar/index.d.ts +237 -0
- package/theme/Checkbox/index.d.ts +75 -0
- package/theme/DatePicker/index.d.ts +51 -0
- package/theme/LightBox/index.d.ts +143 -0
- package/theme/ShareButton/index.d.ts +110 -0
- package/theme/SidePanel/index.d.ts +15 -0
- package/theme/TextArea/index.d.ts +17 -0
- package/theme/Typography/index.d.ts +134 -0
- package/theme/index.d.ts +5 -0
- package/index-3069990a.js +0 -30
- package/index-c159b0a6.mjs +0 -17661
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
declare const typography: import("tailwind-variants").TVReturnType<{
|
|
2
|
+
size: {
|
|
3
|
+
h1: "text-5xl";
|
|
4
|
+
h2: "text-4xl";
|
|
5
|
+
h3: "text-3xl";
|
|
6
|
+
h4: "text-2xl";
|
|
7
|
+
h5: "text-xl";
|
|
8
|
+
h6: "text-lg";
|
|
9
|
+
leading: "text-md font-bold leading-normal";
|
|
10
|
+
paragraph: "text-md inline";
|
|
11
|
+
footnotes: "text-sm";
|
|
12
|
+
xs: "text-xs";
|
|
13
|
+
};
|
|
14
|
+
font: {
|
|
15
|
+
body: "font-body";
|
|
16
|
+
};
|
|
17
|
+
weight: {
|
|
18
|
+
normal: "font-normal";
|
|
19
|
+
light: "font-light";
|
|
20
|
+
bold: "font-bold";
|
|
21
|
+
};
|
|
22
|
+
color: {
|
|
23
|
+
gray: "text-gray-500";
|
|
24
|
+
white: "text-white";
|
|
25
|
+
};
|
|
26
|
+
isError: {
|
|
27
|
+
true: "text-sm text-error ml-8 py-3";
|
|
28
|
+
};
|
|
29
|
+
align: {
|
|
30
|
+
center: "text-center";
|
|
31
|
+
left: "text-left";
|
|
32
|
+
right: "text-right";
|
|
33
|
+
};
|
|
34
|
+
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{
|
|
35
|
+
size: {
|
|
36
|
+
h1: "text-5xl";
|
|
37
|
+
h2: "text-4xl";
|
|
38
|
+
h3: "text-3xl";
|
|
39
|
+
h4: "text-2xl";
|
|
40
|
+
h5: "text-xl";
|
|
41
|
+
h6: "text-lg";
|
|
42
|
+
leading: "text-md font-bold leading-normal";
|
|
43
|
+
paragraph: "text-md inline";
|
|
44
|
+
footnotes: "text-sm";
|
|
45
|
+
xs: "text-xs";
|
|
46
|
+
};
|
|
47
|
+
font: {
|
|
48
|
+
body: "font-body";
|
|
49
|
+
};
|
|
50
|
+
weight: {
|
|
51
|
+
normal: "font-normal";
|
|
52
|
+
light: "font-light";
|
|
53
|
+
bold: "font-bold";
|
|
54
|
+
};
|
|
55
|
+
color: {
|
|
56
|
+
gray: "text-gray-500";
|
|
57
|
+
white: "text-white";
|
|
58
|
+
};
|
|
59
|
+
isError: {
|
|
60
|
+
true: "text-sm text-error ml-8 py-3";
|
|
61
|
+
};
|
|
62
|
+
align: {
|
|
63
|
+
center: "text-center";
|
|
64
|
+
left: "text-left";
|
|
65
|
+
right: "text-right";
|
|
66
|
+
};
|
|
67
|
+
}, {
|
|
68
|
+
size: {
|
|
69
|
+
h1: "text-5xl";
|
|
70
|
+
h2: "text-4xl";
|
|
71
|
+
h3: "text-3xl";
|
|
72
|
+
h4: "text-2xl";
|
|
73
|
+
h5: "text-xl";
|
|
74
|
+
h6: "text-lg";
|
|
75
|
+
leading: "text-md font-bold leading-normal";
|
|
76
|
+
paragraph: "text-md inline";
|
|
77
|
+
footnotes: "text-sm";
|
|
78
|
+
xs: "text-xs";
|
|
79
|
+
};
|
|
80
|
+
font: {
|
|
81
|
+
body: "font-body";
|
|
82
|
+
};
|
|
83
|
+
weight: {
|
|
84
|
+
normal: "font-normal";
|
|
85
|
+
light: "font-light";
|
|
86
|
+
bold: "font-bold";
|
|
87
|
+
};
|
|
88
|
+
color: {
|
|
89
|
+
gray: "text-gray-500";
|
|
90
|
+
white: "text-white";
|
|
91
|
+
};
|
|
92
|
+
isError: {
|
|
93
|
+
true: "text-sm text-error ml-8 py-3";
|
|
94
|
+
};
|
|
95
|
+
align: {
|
|
96
|
+
center: "text-center";
|
|
97
|
+
left: "text-left";
|
|
98
|
+
right: "text-right";
|
|
99
|
+
};
|
|
100
|
+
}>, {
|
|
101
|
+
size: {
|
|
102
|
+
h1: "text-5xl";
|
|
103
|
+
h2: "text-4xl";
|
|
104
|
+
h3: "text-3xl";
|
|
105
|
+
h4: "text-2xl";
|
|
106
|
+
h5: "text-xl";
|
|
107
|
+
h6: "text-lg";
|
|
108
|
+
leading: "text-md font-bold leading-normal";
|
|
109
|
+
paragraph: "text-md inline";
|
|
110
|
+
footnotes: "text-sm";
|
|
111
|
+
xs: "text-xs";
|
|
112
|
+
};
|
|
113
|
+
font: {
|
|
114
|
+
body: "font-body";
|
|
115
|
+
};
|
|
116
|
+
weight: {
|
|
117
|
+
normal: "font-normal";
|
|
118
|
+
light: "font-light";
|
|
119
|
+
bold: "font-bold";
|
|
120
|
+
};
|
|
121
|
+
color: {
|
|
122
|
+
gray: "text-gray-500";
|
|
123
|
+
white: "text-white";
|
|
124
|
+
};
|
|
125
|
+
isError: {
|
|
126
|
+
true: "text-sm text-error ml-8 py-3";
|
|
127
|
+
};
|
|
128
|
+
align: {
|
|
129
|
+
center: "text-center";
|
|
130
|
+
left: "text-left";
|
|
131
|
+
right: "text-right";
|
|
132
|
+
};
|
|
133
|
+
}, undefined>;
|
|
134
|
+
export default typography;
|