1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| import '../../../utils/index.mjs';
| import '../../virtual-list/index.mjs';
| import { columns, expandColumnKey, rowKey } from './common.mjs';
| import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
| import { virtualizedGridProps } from '../../virtual-list/src/props.mjs';
|
| const tableV2RowProps = buildProps({
| class: String,
| columns,
| columnsStyles: {
| type: definePropType(Object),
| required: true
| },
| depth: Number,
| expandColumnKey,
| estimatedRowHeight: {
| ...virtualizedGridProps.estimatedRowHeight,
| default: void 0
| },
| isScrolling: Boolean,
| onRowExpand: {
| type: definePropType(Function)
| },
| onRowHover: {
| type: definePropType(Function)
| },
| onRowHeightChange: {
| type: definePropType(Function)
| },
| rowData: {
| type: definePropType(Object),
| required: true
| },
| rowEventHandlers: {
| type: definePropType(Object)
| },
| rowIndex: {
| type: Number,
| required: true
| },
| rowKey,
| style: {
| type: definePropType(Object)
| }
| });
|
| export { tableV2RowProps };
| //# sourceMappingURL=row.mjs.map
|
|