UNPKG

@nuxt/ui

Version:

A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.

68 lines (67 loc) 2.37 kB
import type { AppConfig } from '@nuxt/schema'; import theme from '#build/ui/footer-columns'; import type { IconProps, LinkProps } from '../types'; import type { ComponentConfig } from '../types/tv'; type FooterColumns = ComponentConfig<typeof theme, AppConfig, 'footerColumns'>; export interface FooterColumnLink extends Omit<LinkProps, 'custom'> { label: string; /** * @IconifyIcon */ icon?: IconProps['name']; class?: any; ui?: Pick<FooterColumns['slots'], 'item' | 'link' | 'linkLabel' | 'linkLabelExternalIcon' | 'linkLeadingIcon'>; } export interface FooterColumn<T extends FooterColumnLink = FooterColumnLink> { label: string; children?: T[]; } export interface FooterColumnsProps<T extends FooterColumnLink = FooterColumnLink> { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; class?: any; columns?: FooterColumn<T>[]; ui?: FooterColumns['slots']; } type SlotProps<T> = (props: { link: T; active: boolean; ui: FooterColumns['ui']; }) => any; export interface FooterColumnsSlots<T extends FooterColumnLink = FooterColumnLink> { 'left'(props?: {}): any; 'default'(props?: {}): any; 'right'(props?: {}): any; 'column-label'?: (props: { column: FooterColumn<T>; }) => any; 'link': SlotProps<T>; 'link-leading': SlotProps<T>; 'link-label'(props: { link: T; active: boolean; }): any; 'link-trailing'(props: { link: T; active: boolean; }): any; } declare const __VLS_export: <T extends FooterColumnLink>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{ props: __VLS_PrettifyLocal<FooterColumnsProps<T>> & import("vue").PublicProps & (typeof globalThis extends { __VLS_PROPS_FALLBACK: infer P; } ? P : {}); expose: (exposed: {}) => void; attrs: any; slots: FooterColumnsSlots<T>; emit: {}; }>) => import("vue").VNode & { __ctx?: Awaited<typeof __VLS_setup>; }; declare const _default: typeof __VLS_export; export default _default; type __VLS_PrettifyLocal<T> = { [K in keyof T as K]: T[K]; } & {};