Skip to content

Commit fa69811

Browse files
committed
chore: changed how the right settings are
chore: changed how the right settings are controlled by making them a absolte element
1 parent 70b7b1e commit fa69811

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@caisy/league",
3-
"version": "0.12.14",
3+
"version": "0.12.15",
44
"access": "public",
55
"types": "dist/types.d.ts",
66
"module": "dist/esm/index.js",
@@ -104,7 +104,6 @@
104104
"react-colorful": "^5.5.1",
105105
"react-flatpickr": "^3.10.7",
106106
"react-lazyload": "^3.2.0",
107-
"react-table": "^7.7.0",
108107
"react-virtuoso": "^4.3.8",
109108
"react-window": "^1.8.9",
110109
"react-window-infinite-loader": "^1.0.9",

src/components/table/HorizontallyScrollableTable.tsx

+9
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,15 @@ export const HorizontallyScrollableTable: FC<ITable> = forwardRef(
223223
</STh>
224224
);
225225
})}
226+
<STh
227+
key={"lol"}
228+
id={"lol"}
229+
style={{
230+
...columns[columns.length - 1].style
231+
}}
232+
>
233+
{"lol"}
234+
</STh>
226235
</STr>
227236
</SThead>
228237
<STbody>

src/components/table/Table.stories.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ function TableDemo() {
118118
globalFilter={globalFilter}
119119
dataSource={dataSource}
120120
columns={columns}
121+
isHorizontallyScrollable={true}
121122
/>
122123
</div>
123124
);

yarn.lock

-8
Original file line numberDiff line numberDiff line change
@@ -10117,11 +10117,6 @@ react-refresh@^0.11.0:
1011710117
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.11.0.tgz#77198b944733f0f1f1a90e791de4541f9f074046"
1011810118
integrity sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==
1011910119

10120-
react-table@^7.7.0:
10121-
version "7.8.0"
10122-
resolved "https://registry.yarnpkg.com/react-table/-/react-table-7.8.0.tgz#07858c01c1718c09f7f1aed7034fcfd7bda907d2"
10123-
integrity sha512-hNaz4ygkZO4bESeFfnfOft73iBUj8K5oKi1EcSHPAibEydfsX2MyU6Z8KCr3mv3C9Kqqh71U+DhZkFvibbnPbA==
10124-
1012510120
react-virtuoso@^4.3.8:
1012610121
version "4.3.8"
1012710122
resolved "https://registry.yarnpkg.com/react-virtuoso/-/react-virtuoso-4.3.8.tgz#eeeb4112d8477b02bec56d55c8030073302ad465"
@@ -10998,7 +10993,6 @@ string-width@^1.0.1:
1099810993
strip-ansi "^3.0.0"
1099910994

1100010995
"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3:
11001-
name string-width-cjs
1100210996
version "4.2.3"
1100310997
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
1100410998
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -11092,7 +11086,6 @@ strip-ansi@^5.2.0:
1109211086
ansi-regex "^4.1.0"
1109311087

1109411088
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
11095-
name strip-ansi-cjs
1109611089
version "6.0.1"
1109711090
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1109811091
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -11956,7 +11949,6 @@ wrap-ansi@^6.2.0:
1195611949
strip-ansi "^6.0.0"
1195711950

1195811951
wrap-ansi@^7.0.0:
11959-
name wrap-ansi-cjs
1196011952
version "7.0.0"
1196111953
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
1196211954
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==

0 commit comments

Comments
 (0)