Files
game-cards-poker-design/frontend/node_modules/element-plus/lib/components/steps/src/item.d.ts
Poker Design Developer 5dbcebf7a2 Fix frontend blank page issues
- Fix router import path in main.js
- Handle Django REST Framework pagination format in API calls
- Add getTemplates function to project API
- Restart frontend development server
2026-05-31 18:40:56 +08:00

48 lines
1.8 KiB
TypeScript

import { IconPropType } from "../../../utils/vue/icon.js";
import { EpPropFinalized, EpPropMergeType } from "../../../utils/vue/props/types.js";
import _default from "./item.vue.js";
import * as _$vue from "vue";
import { ExtractPublicPropTypes } from "vue";
//#region ../../packages/components/steps/src/item.d.ts
interface StepProps {
/**
* @description step title
*/
title?: string;
/**
* @description step custom icon. Icons can be passed via named slot as well
*/
icon?: IconPropType;
/**
* @description step description
* @default ''
*/
description?: string;
/**
* @description current status. It will be automatically set by Steps if not configured.
* @default ''
*/
status?: '' | 'wait' | 'process' | 'finish' | 'error' | 'success';
}
/**
* @deprecated Removed after 3.0.0, Use `StepProps` instead.
*/
declare const stepProps: {
readonly title: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
readonly icon: {
readonly type: _$vue.PropType<EpPropMergeType<(new (...args: any[]) => (string | _$vue.Component) & {}) | (() => string | _$vue.Component) | (((new (...args: any[]) => (string | _$vue.Component) & {}) | (() => string | _$vue.Component)) | null)[], unknown, unknown>>;
readonly required: false;
readonly validator: ((val: unknown) => boolean) | undefined;
__epPropKey: true;
};
readonly description: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
readonly status: EpPropFinalized<StringConstructor, "" | "wait" | "success" | "error" | "finish" | "process", unknown, "", boolean>;
};
/**
* @deprecated Removed after 3.0.0, Use `StepProps` instead.
*/
type StepPropsPublic = ExtractPublicPropTypes<typeof stepProps>;
type StepInstance = InstanceType<typeof _default> & unknown;
//#endregion
export { StepInstance, StepProps, StepPropsPublic, stepProps };