@jiaozhiye/qm-design-react 2.0.4 → 2.0.5
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/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/scrollbar/src/scrollbar.d.ts +3 -0
- package/lib/style/index.css +1 -0
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/table/props.d.ts +1 -0
- package/lib/table/src/table/types.d.ts +2 -1
- package/lib/table/style/table.less +372 -371
- package/package.json +138 -138
|
@@ -17,6 +17,9 @@ type IProps = {
|
|
|
17
17
|
onScroll?: (event: IEvent) => void;
|
|
18
18
|
};
|
|
19
19
|
export type ScrollbarRef = {
|
|
20
|
+
container: HTMLDivElement;
|
|
21
|
+
scrollTop: number;
|
|
22
|
+
scrollLeft: number;
|
|
20
23
|
SET_SCROLL_TOP: (value: number) => void;
|
|
21
24
|
SET_SCROLL_LEFT: (value: number) => void;
|
|
22
25
|
};
|
package/lib/style/index.css
CHANGED
|
@@ -29329,6 +29329,7 @@ table {
|
|
|
29329
29329
|
}
|
|
29330
29330
|
.qm-table .body--y-space {
|
|
29331
29331
|
width: 0;
|
|
29332
|
+
line-height: 0;
|
|
29332
29333
|
float: left;
|
|
29333
29334
|
visibility: hidden;
|
|
29334
29335
|
}
|