yanzhen-design-vue
Version:
94 lines (93 loc) • 4.42 kB
TypeScript
import { ExtractPropTypes } from 'vue';
export declare const rowOptions: {
ns: any;
class: any;
name: any;
};
export declare const rowName: any;
export declare const AntRowProps: {
props: {
align: {
type: import('vue').PropType<"top" | "bottom" | "stretch" | "middle" | {
xxl?: "top" | "middle" | "bottom" | "stretch";
xl?: "top" | "middle" | "bottom" | "stretch";
lg?: "top" | "middle" | "bottom" | "stretch";
md?: "top" | "middle" | "bottom" | "stretch";
sm?: "top" | "middle" | "bottom" | "stretch";
xs?: "top" | "middle" | "bottom" | "stretch";
}>;
default: "top" | "bottom" | "stretch" | "middle" | {
xxl?: "top" | "middle" | "bottom" | "stretch";
xl?: "top" | "middle" | "bottom" | "stretch";
lg?: "top" | "middle" | "bottom" | "stretch";
md?: "top" | "middle" | "bottom" | "stretch";
sm?: "top" | "middle" | "bottom" | "stretch";
xs?: "top" | "middle" | "bottom" | "stretch";
};
};
justify: {
type: import('vue').PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | {
xxl?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
xl?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
lg?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
md?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
sm?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
xs?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
}>;
default: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | {
xxl?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
xl?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
lg?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
md?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
sm?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
xs?: "end" | "start" | "space-around" | "space-between" | "space-evenly" | "center";
};
};
prefixCls: StringConstructor;
gutter: {
type: import('vue').PropType<import('ant-design-vue/es/grid/Row').Gutter | [import('ant-design-vue/es/grid/Row').Gutter, import('ant-design-vue/es/grid/Row').Gutter]>;
default: import('ant-design-vue/es/grid/Row').Gutter | [import('ant-design-vue/es/grid/Row').Gutter, import('ant-design-vue/es/grid/Row').Gutter];
};
wrap: {
type: BooleanConstructor;
default: any;
};
};
emits: {};
};
export declare const rowProps: {
text: {
type: StringConstructor;
};
align: {
readonly type: import('vue').PropType<unknown>;
readonly required: false;
readonly validator: ((val: unknown) => boolean) | undefined;
__epPropKey: true;
};
justify: {
readonly type: import('vue').PropType<unknown>;
readonly required: false;
readonly validator: ((val: unknown) => boolean) | undefined;
__epPropKey: true;
};
prefixCls: {
type: StringConstructor;
};
gutter: {
readonly type: import('vue').PropType<unknown>;
readonly required: false;
readonly validator: ((val: unknown) => boolean) | undefined;
__epPropKey: true;
};
wrap: {
readonly type: import('vue').PropType<import('@yanzhen-libs/utils-vue').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
readonly required: false;
readonly validator: ((val: unknown) => boolean) | undefined;
__epPropKey: true;
};
};
export declare const rowEmits: {};
export type RowProps = Partial<ExtractPropTypes<typeof rowProps>>;
export type RowPropsKey = keyof RowProps;
export type RowEmits = typeof rowEmits;