UNPKG

element-plus

Version:

A Component Library for Vue 3

72 lines (71 loc) 1.44 kB
import { CHANGE_EVENT } from "../../../constants/event.mjs"; import { isNumber } from "../../../utils/types.mjs"; import { buildProps } from "../../../utils/vue/props/runtime.mjs"; //#region ../../packages/components/steps/src/steps.ts /** * @deprecated Removed after 3.0.0, Use `StepsProps` instead. */ const stepsProps = buildProps({ /** * @description the spacing of each step, will be responsive if omitted. Supports percentage. */ space: { type: [Number, String], default: "" }, /** * @description current activation step */ active: { type: Number, default: 0 }, /** * @description display direction */ direction: { type: String, default: "horizontal", values: ["horizontal", "vertical"] }, /** * @description center title and description */ alignCenter: { type: Boolean }, /** * @description whether to apply simple theme */ simple: { type: Boolean }, /** * @description status of end step */ finishStatus: { type: String, values: [ "wait", "process", "finish", "error", "success" ], default: "finish" }, /** * @description status of current step */ processStatus: { type: String, values: [ "wait", "process", "finish", "error", "success" ], default: "process" } }); const stepsEmits = { [CHANGE_EVENT]: (newVal, oldVal) => [newVal, oldVal].every(isNumber) }; //#endregion export { stepsEmits, stepsProps }; //# sourceMappingURL=steps.mjs.map