@manamerge/mana-atomic-ui 1.0.44 → 1.0.46

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.
@@ -7,7 +7,7 @@ const fontsizes = {
7
7
  xxl: "24px",
8
8
  xxxl: "30px",
9
9
  xxxxl: "36px"
10
- } as const;
10
+ };
11
11
  // export type FontSize = (typeof fontsizes)[keyof typeof fontsizes];
12
12
  // export type FontSize = keyof typeof fontsizes;
13
13
 
@@ -506,7 +506,7 @@ export declare const ManamergeTheme: {
506
506
  };
507
507
  text: {
508
508
  "Text-primary-light": {
509
- vFontSize: "12px";
509
+ vFontSize: string;
510
510
  lineHeight: string;
511
511
  fontWeight: number;
512
512
  vColor: string;
@@ -514,7 +514,7 @@ export declare const ManamergeTheme: {
514
514
  fontFamily: string;
515
515
  };
516
516
  "Text-primary-regular": {
517
- vFontSize: "14px";
517
+ vFontSize: string;
518
518
  lineHeight: string;
519
519
  fontWeight: number;
520
520
  vColor: string;
@@ -522,7 +522,7 @@ export declare const ManamergeTheme: {
522
522
  fontFamily: string;
523
523
  };
524
524
  "Text-primary-medium": {
525
- vFontSize: "16px";
525
+ vFontSize: string;
526
526
  lineHeight: string;
527
527
  fontWeight: number;
528
528
  vColor: string;
@@ -530,7 +530,7 @@ export declare const ManamergeTheme: {
530
530
  fontFamily: string;
531
531
  };
532
532
  "Text-primary-bold": {
533
- vFontSize: "18px";
533
+ vFontSize: string;
534
534
  lineHeight: string;
535
535
  fontWeight: number;
536
536
  vColor: string;
@@ -538,7 +538,7 @@ export declare const ManamergeTheme: {
538
538
  fontFamily: string;
539
539
  };
540
540
  "Text-primary-heavy": {
541
- vFontSize: "20px";
541
+ vFontSize: string;
542
542
  lineHeight: string;
543
543
  fontWeight: number;
544
544
  vColor: string;
@@ -546,7 +546,7 @@ export declare const ManamergeTheme: {
546
546
  fontFamily: string;
547
547
  };
548
548
  "Text-secondary-regular": {
549
- vFontSize: "14px";
549
+ vFontSize: string;
550
550
  lineHeight: string;
551
551
  fontWeight: number;
552
552
  vColor: string;
@@ -554,7 +554,7 @@ export declare const ManamergeTheme: {
554
554
  fontFamily: string;
555
555
  };
556
556
  "Text-secondary-italic": {
557
- vFontSize: "18px";
557
+ vFontSize: string;
558
558
  lineHeight: string;
559
559
  fontWeight: number;
560
560
  fontStyle: string;
@@ -1271,14 +1271,14 @@ export declare const ManamergeTheme: {
1271
1271
  superLargeDesktopUp: string;
1272
1272
  };
1273
1273
  fontsizes: {
1274
- readonly xs: "12px";
1275
- readonly sm: "14px";
1276
- readonly md: "16px";
1277
- readonly lg: "18px";
1278
- readonly xl: "20px";
1279
- readonly xxl: "24px";
1280
- readonly xxxl: "30px";
1281
- readonly xxxxl: "36px";
1274
+ xs: string;
1275
+ sm: string;
1276
+ md: string;
1277
+ lg: string;
1278
+ xl: string;
1279
+ xxl: string;
1280
+ xxxl: string;
1281
+ xxxxl: string;
1282
1282
  };
1283
1283
  pages: {
1284
1284
  vod: {
@@ -1,6 +1,6 @@
1
1
  declare const text: {
2
2
  "Text-primary-light": {
3
- vFontSize: "12px";
3
+ vFontSize: string;
4
4
  lineHeight: string;
5
5
  fontWeight: number;
6
6
  vColor: string;
@@ -8,7 +8,7 @@ declare const text: {
8
8
  fontFamily: string;
9
9
  };
10
10
  "Text-primary-regular": {
11
- vFontSize: "14px";
11
+ vFontSize: string;
12
12
  lineHeight: string;
13
13
  fontWeight: number;
14
14
  vColor: string;
@@ -16,7 +16,7 @@ declare const text: {
16
16
  fontFamily: string;
17
17
  };
18
18
  "Text-primary-medium": {
19
- vFontSize: "16px";
19
+ vFontSize: string;
20
20
  lineHeight: string;
21
21
  fontWeight: number;
22
22
  vColor: string;
@@ -24,7 +24,7 @@ declare const text: {
24
24
  fontFamily: string;
25
25
  };
26
26
  "Text-primary-bold": {
27
- vFontSize: "18px";
27
+ vFontSize: string;
28
28
  lineHeight: string;
29
29
  fontWeight: number;
30
30
  vColor: string;
@@ -32,7 +32,7 @@ declare const text: {
32
32
  fontFamily: string;
33
33
  };
34
34
  "Text-primary-heavy": {
35
- vFontSize: "20px";
35
+ vFontSize: string;
36
36
  lineHeight: string;
37
37
  fontWeight: number;
38
38
  vColor: string;
@@ -40,7 +40,7 @@ declare const text: {
40
40
  fontFamily: string;
41
41
  };
42
42
  "Text-secondary-regular": {
43
- vFontSize: "14px";
43
+ vFontSize: string;
44
44
  lineHeight: string;
45
45
  fontWeight: number;
46
46
  vColor: string;
@@ -48,7 +48,7 @@ declare const text: {
48
48
  fontFamily: string;
49
49
  };
50
50
  "Text-secondary-italic": {
51
- vFontSize: "18px";
51
+ vFontSize: string;
52
52
  lineHeight: string;
53
53
  fontWeight: number;
54
54
  fontStyle: string;
@@ -1,11 +1,11 @@
1
1
  declare const fontsizes: {
2
- readonly xs: "12px";
3
- readonly sm: "14px";
4
- readonly md: "16px";
5
- readonly lg: "18px";
6
- readonly xl: "20px";
7
- readonly xxl: "24px";
8
- readonly xxxl: "30px";
9
- readonly xxxxl: "36px";
2
+ xs: string;
3
+ sm: string;
4
+ md: string;
5
+ lg: string;
6
+ xl: string;
7
+ xxl: string;
8
+ xxxl: string;
9
+ xxxxl: string;
10
10
  };
11
11
  export default fontsizes;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manamerge/mana-atomic-ui",
3
- "version": "1.0.44",
3
+ "version": "1.0.46",
4
4
  "description": "Mana Merge design system",
5
5
  "license": "ISC",
6
6
  "author": "MM",