UNPKG

element-plus

Version:

A Component Library for Vue 3

46 lines (45 loc) 985 B
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" }); const require_runtime = require("../../../utils/vue/props/runtime.js"); const require_icon = require("../../../utils/vue/icon.js"); //#region ../../packages/components/steps/src/item.ts /** * @deprecated Removed after 3.0.0, Use `StepProps` instead. */ const stepProps = require_runtime.buildProps({ /** * @description step title */ title: { type: String, default: "" }, /** * @description step custom icon. Icons can be passed via named slot as well */ icon: { type: require_icon.iconPropType }, /** * @description step description */ description: { type: String, default: "" }, /** * @description current status. It will be automatically set by Steps if not configured. */ status: { type: String, values: [ "", "wait", "process", "finish", "error", "success" ], default: "" } }); //#endregion exports.stepProps = stepProps; //# sourceMappingURL=item.js.map