17 lines
416 B
JavaScript
17 lines
416 B
JavaScript
|
|
import { columns } from './common.mjs';
|
||
|
|
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
|
||
|
|
|
||
|
|
const tableV2HeaderRowProps = buildProps({
|
||
|
|
class: String,
|
||
|
|
columns,
|
||
|
|
columnsStyles: {
|
||
|
|
type: definePropType(Object),
|
||
|
|
required: true
|
||
|
|
},
|
||
|
|
headerIndex: Number,
|
||
|
|
style: { type: definePropType(Object) }
|
||
|
|
});
|
||
|
|
|
||
|
|
export { tableV2HeaderRowProps };
|
||
|
|
//# sourceMappingURL=header-row.mjs.map
|