@ctlyst.id/internal-ui 2.0.24 → 2.0.25
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/dist/config/theme/components/table.d.ts +12 -0
- package/dist/internal-ui.cjs.development.js +14 -2
- package/dist/internal-ui.cjs.development.js.map +1 -1
- package/dist/internal-ui.cjs.production.min.js +1 -1
- package/dist/internal-ui.cjs.production.min.js.map +1 -1
- package/dist/internal-ui.esm.js +14 -2
- package/dist/internal-ui.esm.js.map +1 -1
- package/package.json +2 -2
@@ -50,11 +50,23 @@ declare const tableTheme: {
|
|
50
50
|
py: string;
|
51
51
|
lineHeight: string;
|
52
52
|
fontSize: string;
|
53
|
+
'&:first-of-type': {
|
54
|
+
pl: number;
|
55
|
+
};
|
56
|
+
'&:last-of-type': {
|
57
|
+
pr: number;
|
58
|
+
};
|
53
59
|
};
|
54
60
|
td: {
|
55
61
|
px: string;
|
56
62
|
py: string;
|
57
63
|
lineHeight: string;
|
64
|
+
'&:first-of-type': {
|
65
|
+
pl: number;
|
66
|
+
};
|
67
|
+
'&:last-of-type': {
|
68
|
+
pr: number;
|
69
|
+
};
|
58
70
|
};
|
59
71
|
caption: {
|
60
72
|
px: string;
|
@@ -4603,12 +4603,24 @@ const sizes$3 = {
|
|
4603
4603
|
px: '2',
|
4604
4604
|
py: '4',
|
4605
4605
|
lineHeight: '4',
|
4606
|
-
fontSize: 'xs'
|
4606
|
+
fontSize: 'xs',
|
4607
|
+
'&:first-of-type': {
|
4608
|
+
pl: 6
|
4609
|
+
},
|
4610
|
+
'&:last-of-type': {
|
4611
|
+
pr: 6
|
4612
|
+
}
|
4607
4613
|
},
|
4608
4614
|
td: {
|
4609
4615
|
px: '2',
|
4610
4616
|
py: '4',
|
4611
|
-
lineHeight: '5'
|
4617
|
+
lineHeight: '5',
|
4618
|
+
'&:first-of-type': {
|
4619
|
+
pl: 6
|
4620
|
+
},
|
4621
|
+
'&:last-of-type': {
|
4622
|
+
pr: 6
|
4623
|
+
}
|
4612
4624
|
},
|
4613
4625
|
caption: {
|
4614
4626
|
px: '6',
|