@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/).
37 lines (36 loc) • 1.34 kB
TypeScript
import { default as Repository } from '@shopware-ag/meteor-admin-sdk/es/data/repository';
export interface Props {
entity: keyof EntitySchema.Entities;
repository?: typeof Repository;
modelValue?: any;
labelProperty?: string | string[];
valueProperty?: string;
disabled?: boolean;
enableMultiSelection?: boolean;
}
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: any;
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
"update:modelValue": (value: any) => any;
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
}>, {
disabled: boolean;
modelValue: any;
labelProperty: string | string[];
valueProperty: string;
enableMultiSelection: boolean;
repository: typeof Repository;
}, {}, {}, {}, 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;
};
};