pixel-react-excel-sheet 1.0.91 → 1.0.93
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/lib/components/AttachmentButton/AttachmentButton.js +3 -3
- package/lib/components/AttachmentButton/AttachmentButton.js.map +1 -1
- package/lib/components/AttachmentButton/types.d.ts +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFile.d.ts +2 -10
- package/lib/components/Excel/ExcelFile/ExcelFile.js +3 -3
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.d.ts +2 -9
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +69 -60
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.js +1 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +2 -10
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js +4 -86
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducer.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/util.d.ts +0 -2
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/util.js +1 -18
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/util.js.map +1 -1
- package/lib/index.cjs +3 -3
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +3 -11
- package/lib/index.esm.js +2 -2
- package/lib/index.esm.js.br +0 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/styles/Typography.scss +90 -16
- package/package.json +1 -1
|
@@ -1,25 +1,99 @@
|
|
|
1
|
-
@
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
@use '../../assets/styles/fonts';
|
|
2
|
+
|
|
3
|
+
.typography-container {
|
|
4
|
+
.typography-header {
|
|
5
|
+
& div {
|
|
6
|
+
@extend .font2Xl;
|
|
7
|
+
font-weight: 600;
|
|
8
|
+
}
|
|
9
|
+
& span {
|
|
10
|
+
@extend .fontSm;
|
|
11
|
+
font-weight: 400;
|
|
12
|
+
color: var(--tooltip-bg-color); // need to change color #7A7A7A
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
.font-display {
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: column;
|
|
19
|
+
gap: 20px;
|
|
4
20
|
}
|
|
5
21
|
|
|
6
|
-
.
|
|
7
|
-
|
|
22
|
+
.font-row {
|
|
23
|
+
display: flex;
|
|
24
|
+
justify-content: space-between;
|
|
25
|
+
padding: 20px;
|
|
26
|
+
}
|
|
8
27
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
28
|
+
.font-left {
|
|
29
|
+
width: 60%;
|
|
30
|
+
display: flex;
|
|
31
|
+
flex-direction: column;
|
|
32
|
+
border-right: 1px solid var(--border-color);
|
|
33
|
+
padding: 10px;
|
|
34
|
+
gap: 10px;
|
|
35
|
+
|
|
36
|
+
.font-name {
|
|
37
|
+
@extend .fontLg;
|
|
16
38
|
font-weight: 600;
|
|
17
39
|
}
|
|
18
|
-
|
|
40
|
+
|
|
41
|
+
.font-sample {
|
|
42
|
+
@extend .font-size-80;
|
|
19
43
|
font-weight: 700;
|
|
20
44
|
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
45
|
+
|
|
46
|
+
.font-characters {
|
|
47
|
+
@extend .font2Xl;
|
|
48
|
+
font-weight: 400;
|
|
49
|
+
line-height: 36px;
|
|
50
|
+
letter-spacing: 0.16em;
|
|
51
|
+
white-space: pre;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.font-right {
|
|
56
|
+
width: 40%;
|
|
57
|
+
display: flex;
|
|
58
|
+
flex-direction: column;
|
|
59
|
+
justify-content: center;
|
|
60
|
+
padding: 20px;
|
|
61
|
+
gap: 20px;
|
|
62
|
+
|
|
63
|
+
.font-right-section {
|
|
64
|
+
display: flex;
|
|
65
|
+
align-items: center;
|
|
66
|
+
|
|
67
|
+
.font-sample-large {
|
|
68
|
+
font-size: 40px;
|
|
69
|
+
margin-right: 10px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// Apply specific font weight different sections
|
|
73
|
+
&.bold {
|
|
74
|
+
@extend .font2Xl;
|
|
75
|
+
font-weight: 700;
|
|
76
|
+
}
|
|
77
|
+
&.semi-bold {
|
|
78
|
+
@extend .font2Xl;
|
|
79
|
+
font-weight: 600;
|
|
80
|
+
}
|
|
81
|
+
&.regular {
|
|
82
|
+
@extend .font2Xl;
|
|
83
|
+
font-weight: 400;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.font-info {
|
|
87
|
+
display: flex;
|
|
88
|
+
flex-direction: column;
|
|
89
|
+
align-items: flex-start;
|
|
90
|
+
|
|
91
|
+
// Specific styling for the font-size part
|
|
92
|
+
.font-size {
|
|
93
|
+
@extend .fontLg;
|
|
94
|
+
font-weight: 400;
|
|
95
|
+
color: var(--tooltip-bg-color);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
24
98
|
}
|
|
25
99
|
}
|
package/package.json
CHANGED