@shopware-ag/meteor-component-library
Version:
The meteor component library is a Vue component library developed by Shopware. It is based on the [Meteor Design System](https://shopware.design/).
55 lines (54 loc) • 1.9 kB
TypeScript
declare const modelValue: import('vue').ModelRef<string | undefined, string, string | undefined, string | undefined>;
type __VLS_Props = {
omitUrlHash?: boolean;
omitUrlSearch?: boolean;
copyable?: boolean;
error?: {
detail: string;
};
label?: string;
required?: boolean;
isInheritanceField?: boolean;
isInherited?: boolean;
helpText?: string;
disabled?: boolean;
placeholder?: string;
name?: string;
size?: "small" | "default";
};
type __VLS_PublicProps = {
modelValue?: typeof modelValue['value'];
} & __VLS_Props;
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<{
suffix?(): void;
hint?(): void;
}> & {
suffix?(): void;
hint?(): void;
};
refs: {};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"inheritance-remove": () => any;
"inheritance-restore": () => any;
"update:modelValue": (value: string | undefined) => any;
change: (value: string) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onInheritance-remove"?: (() => any) | undefined;
"onInheritance-restore"?: (() => any) | undefined;
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
onChange?: ((value: string) => any) | undefined;
}>, {
size: "small" | "default";
}, {}, {}, {}, 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;
};
};