@aplus-frontend/ui
Version:
51 lines (50 loc) • 1.26 kB
TypeScript
import { PropType, VNode } from 'vue';
import { ApLadderLabelValue } from './interface';
export declare const ApLadderProps: () => {
layout: {
type: PropType<"vertical" | "horizontal">;
default: string;
};
labelValues: {
type: PropType<ApLadderLabelValue[]>;
default: () => never[];
};
tooltip: {
type: BooleanConstructor;
default: boolean;
};
labelAlign: {
type: PropType<"left" | "right">;
default: string;
};
major: {
type: PropType<string | number | VNode | (() => VNode)>;
default: null;
};
minor: {
type: PropType<string | number | VNode | (() => VNode)>;
default: null;
};
majorColor: {
type: StringConstructor;
default: string;
};
minorColor: {
type: StringConstructor;
default: string;
};
};
export declare const ApLadderSimpleModeProps: () => {
major: {
type: PropType<string | number | VNode | (() => VNode)>;
default: null;
};
minor: {
type: PropType<string | number | VNode | (() => VNode)>;
default: null;
};
layout: {
type: PropType<"vertical" | "horizontal">;
default: string;
};
};