vuestic-ui
Version:
Vue 3 UI Framework
172 lines (171 loc) • 4.64 kB
TypeScript
import { TabComponent } from './types';
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
modelValue: {
type: (StringConstructor | NumberConstructor)[];
default: null;
};
left: {
type: BooleanConstructor;
default: boolean;
};
right: {
type: BooleanConstructor;
default: boolean;
};
center: {
type: BooleanConstructor;
default: boolean;
};
grow: {
type: BooleanConstructor;
default: boolean;
};
hidePagination: {
type: BooleanConstructor;
default: boolean;
};
disabled: {
type: BooleanConstructor;
default: boolean;
};
hideSlider: {
type: BooleanConstructor;
default: boolean;
};
vertical: {
type: BooleanConstructor;
default: boolean;
};
color: {
type: StringConstructor;
default: string;
};
prevIcon: {
type: StringConstructor;
default: string;
};
nextIcon: {
type: StringConstructor;
default: string;
};
ariaMoveRightLabel: {
type: import("vue").PropType<import("../../composables").TranslationProp>;
default: import("../../composables").TranslationProp;
};
ariaMoveLeftLabel: {
type: import("vue").PropType<import("../../composables").TranslationProp>;
default: import("../../composables").TranslationProp;
};
preset: {
type: import("vue").PropType<import("../../composables").PresetPropValue>;
default: undefined;
};
stateful: {
type: import("vue").PropType<boolean>;
default: boolean;
};
}, {
selectTab: (tab: TabComponent) => void;
moveToTab: (tab: TabComponent) => void;
movePaginationLeft: () => void;
movePaginationRight: () => void;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (...args: any[]) => void;
"click:next": (...args: any[]) => void;
"click:prev": (...args: any[]) => void;
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: {
type: (StringConstructor | NumberConstructor)[];
default: null;
};
left: {
type: BooleanConstructor;
default: boolean;
};
right: {
type: BooleanConstructor;
default: boolean;
};
center: {
type: BooleanConstructor;
default: boolean;
};
grow: {
type: BooleanConstructor;
default: boolean;
};
hidePagination: {
type: BooleanConstructor;
default: boolean;
};
disabled: {
type: BooleanConstructor;
default: boolean;
};
hideSlider: {
type: BooleanConstructor;
default: boolean;
};
vertical: {
type: BooleanConstructor;
default: boolean;
};
color: {
type: StringConstructor;
default: string;
};
prevIcon: {
type: StringConstructor;
default: string;
};
nextIcon: {
type: StringConstructor;
default: string;
};
ariaMoveRightLabel: {
type: import("vue").PropType<import("../../composables").TranslationProp>;
default: import("../../composables").TranslationProp;
};
ariaMoveLeftLabel: {
type: import("vue").PropType<import("../../composables").TranslationProp>;
default: import("../../composables").TranslationProp;
};
preset: {
type: import("vue").PropType<import("../../composables").PresetPropValue>;
default: undefined;
};
stateful: {
type: import("vue").PropType<boolean>;
default: boolean;
};
}>> & {
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
"onClick:next"?: ((...args: any[]) => any) | undefined;
"onClick:prev"?: ((...args: any[]) => any) | undefined;
}, {
modelValue: string | number;
stateful: boolean;
preset: import("../../composables").PresetPropValue;
right: boolean;
left: boolean;
color: string;
center: boolean;
vertical: boolean;
disabled: boolean;
grow: boolean;
hidePagination: boolean;
hideSlider: boolean;
prevIcon: string;
nextIcon: string;
ariaMoveRightLabel: import("../../composables").TranslationProp;
ariaMoveLeftLabel: import("../../composables").TranslationProp;
}, {}>, {
tabs?(_: {}): any;
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};