UNPKG

@agendize/design-system

Version:
46 lines 1.62 kB
import { FieldLayoutType, Mandatory, OverlayPosition } from "./viewModel"; export interface Props { id: string; label: string; htmlLabel?: string; helperMessage?: string; mandatory: Mandatory; error?: string; errorParameters?: any; titleLevel?: number; showError?: boolean; fullHeight?: boolean; layout?: FieldLayoutType; toolTipPosition?: OverlayPosition; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { "update:modelValue": (item: string) => any; onError: (item: any) => any; onValidated: (item: boolean) => any; }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{ "onUpdate:modelValue"?: ((item: string) => any) | undefined; onOnError?: ((item: any) => any) | undefined; onOnValidated?: ((item: boolean) => any) | undefined; }>, { showError: boolean; fullHeight: boolean; layout: FieldLayoutType; toolTipPosition: OverlayPosition; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; }; //# sourceMappingURL=View.vue.d.ts.map