@rovula/ui 0.1.29 → 0.1.30
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/cjs/bundle.css +21 -0
- package/dist/cjs/bundle.js +3 -3
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/DataTable/DataTable.d.ts +3 -3
- package/dist/cjs/types/components/DataTable/DataTable.stories.d.ts +29 -3
- package/dist/components/DataTable/DataTable.js +16 -6
- package/dist/components/DataTable/DataTable.stories.js +60 -0
- package/dist/components/Table/Table.js +5 -5
- package/dist/esm/bundle.css +21 -0
- package/dist/esm/bundle.js +2 -2
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/DataTable/DataTable.d.ts +3 -3
- package/dist/esm/types/components/DataTable/DataTable.stories.d.ts +29 -3
- package/dist/index.d.ts +3 -3
- package/dist/src/theme/global.css +28 -0
- package/package.json +1 -1
- package/src/components/DataTable/DataTable.stories.tsx +141 -0
- package/src/components/DataTable/DataTable.tsx +35 -20
- package/src/components/Table/Table.tsx +54 -42
package/dist/cjs/bundle.css
CHANGED
|
@@ -1001,6 +1001,9 @@ input[type=number] {
|
|
|
1001
1001
|
.h-\[280px\]{
|
|
1002
1002
|
height: 280px;
|
|
1003
1003
|
}
|
|
1004
|
+
.h-\[28px\]{
|
|
1005
|
+
height: 28px;
|
|
1006
|
+
}
|
|
1004
1007
|
.h-\[2px\]{
|
|
1005
1008
|
height: 2px;
|
|
1006
1009
|
}
|
|
@@ -1025,9 +1028,15 @@ input[type=number] {
|
|
|
1025
1028
|
.h-\[48px\]{
|
|
1026
1029
|
height: 48px;
|
|
1027
1030
|
}
|
|
1031
|
+
.h-\[50px\]{
|
|
1032
|
+
height: 50px;
|
|
1033
|
+
}
|
|
1028
1034
|
.h-\[54px\]{
|
|
1029
1035
|
height: 54px;
|
|
1030
1036
|
}
|
|
1037
|
+
.h-\[56px\]{
|
|
1038
|
+
height: 56px;
|
|
1039
|
+
}
|
|
1031
1040
|
.h-\[64px\]{
|
|
1032
1041
|
height: 64px;
|
|
1033
1042
|
}
|
|
@@ -1596,6 +1605,9 @@ input[type=number] {
|
|
|
1596
1605
|
.whitespace-nowrap{
|
|
1597
1606
|
white-space: nowrap;
|
|
1598
1607
|
}
|
|
1608
|
+
.whitespace-pre{
|
|
1609
|
+
white-space: pre;
|
|
1610
|
+
}
|
|
1599
1611
|
.whitespace-pre-line{
|
|
1600
1612
|
white-space: pre-line;
|
|
1601
1613
|
}
|
|
@@ -4070,6 +4082,12 @@ input[type=number] {
|
|
|
4070
4082
|
--tw-numeric-spacing: tabular-nums;
|
|
4071
4083
|
font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
|
|
4072
4084
|
}
|
|
4085
|
+
.leading-\[18px\]{
|
|
4086
|
+
line-height: 18px;
|
|
4087
|
+
}
|
|
4088
|
+
.leading-\[20px\]{
|
|
4089
|
+
line-height: 20px;
|
|
4090
|
+
}
|
|
4073
4091
|
.leading-\[3rem\]{
|
|
4074
4092
|
line-height: 3rem;
|
|
4075
4093
|
}
|
|
@@ -7279,6 +7297,9 @@ input[type=number] {
|
|
|
7279
7297
|
.\[\&_tr\>td\]\:border-b-0 tr>td{
|
|
7280
7298
|
border-bottom-width: 0px;
|
|
7281
7299
|
}
|
|
7300
|
+
.\[\&_tr\>th\]\:box-border tr>th{
|
|
7301
|
+
box-sizing: border-box;
|
|
7302
|
+
}
|
|
7282
7303
|
.\[\&_tr\>th\]\:border-b tr>th{
|
|
7283
7304
|
border-bottom-width: 1px;
|
|
7284
7305
|
}
|