UNPKG

yozora-vue

Version:

Build beautiful, scalable UIs effortlessly with Yozora, a Vue 3 and Tailwind CSS component library focused on flexibility, responsiveness, and ease of customization. Perfect for developers seeking fast, maintainable, and utility-first design integration.

44 lines (43 loc) 1.63 kB
/** * Props for the TableHeader component. * * @prop {string} width - The width of the table header. Default is ''. * @prop {boolean} borderless - The borderless state of the table header. Default is false. * @prop {string} bgColor - The background color of the table header. Default is 'secondary'. * @prop {string} textColor - The text color of the table header. Default is ''. * @prop {string} textPosition - The text position of the table header. Default is 'center'. */ interface TableHeaderProps { width?: string; borderless?: boolean; bgColor?: string; textColor?: string; textPosition?: string; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: {}; rootEl: HTMLTableCellElement; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import("vue").DefineComponent<TableHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { sort: (...args: any[]) => void; }, string, import("vue").PublicProps, Readonly<TableHeaderProps> & Readonly<{ onSort?: ((...args: any[]) => any) | undefined; }>, { width: string; bgColor: string; textColor: string; borderless: boolean; textPosition: string; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLTableCellElement>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };