@edvisor/product-language 0.10.49 → 0.10.50
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/index.cjs +1 -1
- package/index.js +1 -1
- package/lib/foundations/typography/constants.d.ts +17 -0
- package/lib/helpers/index.d.ts +1 -0
- package/lib/helpers/useIsMobile.d.ts +1 -0
- package/package.json +1 -1
|
@@ -12,6 +12,15 @@ export declare const FontSize: {
|
|
|
12
12
|
readonly f: "28px";
|
|
13
13
|
readonly g: "36px";
|
|
14
14
|
};
|
|
15
|
+
export declare const FontSizeMobile: {
|
|
16
|
+
readonly a: "13px";
|
|
17
|
+
readonly b: "14px";
|
|
18
|
+
readonly c: "16px";
|
|
19
|
+
readonly d: "18px";
|
|
20
|
+
readonly e: "20px";
|
|
21
|
+
readonly f: "24px";
|
|
22
|
+
readonly g: "32px";
|
|
23
|
+
};
|
|
15
24
|
export declare const LineHeight: {
|
|
16
25
|
readonly a: "16px";
|
|
17
26
|
readonly b: "20px";
|
|
@@ -20,3 +29,11 @@ export declare const LineHeight: {
|
|
|
20
29
|
readonly e: "32px";
|
|
21
30
|
readonly f: "44px";
|
|
22
31
|
};
|
|
32
|
+
export declare const LineHeightMobile: {
|
|
33
|
+
readonly a: "16px";
|
|
34
|
+
readonly b: "20px";
|
|
35
|
+
readonly c: "24px";
|
|
36
|
+
readonly d: "28px";
|
|
37
|
+
readonly e: "32px";
|
|
38
|
+
readonly f: "40px";
|
|
39
|
+
};
|
package/lib/helpers/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useIsMobile: () => boolean;
|