UNPKG

@fifteen/design-system-vue

Version:

Vue 3 (Composition API + Typescript) implementation of the Fifteen Design System

51 lines (50 loc) 1.49 kB
import { Span } from '../types/grid'; export interface FGridItemProps { /** * The span value for xxs breakpoint and below */ xxs?: Span | null; /** * The span value for xs breakpoint and below */ xs?: Span | null; /** * The span value for sm breakpoint and below */ sm?: Span | null; /** * The span value for md breakpoint and below */ md?: Span | null; /** * The span value for lg breakpoint and below */ lg?: Span | null; /** * Base span value for all media queries above the last greatest defined breakpoint */ span?: Span; } declare function __VLS_template(): { slots: { default?(_: {}): any; }; refs: {}; attrs: Partial<{}>; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import('vue').DefineComponent<FGridItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FGridItemProps> & Readonly<{}>, { span: Span; xxs: Span | null; xs: Span | null; sm: Span | null; md: Span | null; lg: Span | null; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };