Files
manolia-alpha/node_modules/buetify/lib/components/steps/shared.d.ts
Robin COuret e0e50af706 init component
2026-02-16 17:28:37 +01:00

41 lines
1.2 KiB
TypeScript
Executable File

import { Component, ExtractPropTypes, PropType, Ref } from 'vue';
import { Option } from 'fp-ts/lib/Option';
import { ColorVariant } from '../../types/ColorVariants';
export declare const STEPS_SYMBOL: unique symbol;
export declare const STEP_ITEM_NAME = "b-step-item";
export interface StepInjection {
activeLabel: Ref<Option<string>>;
steps: BStepItemProps[];
}
export declare const DEFAULT_STEP_INJECTION: StepInjection;
export declare const BStepItemPropsDefinition: {
label: {
type: PropType<string>;
required: true;
};
step: {
type: StringConstructor;
required: boolean;
};
variant: {
type: PropType<ColorVariant>;
default: "";
};
icon: {
type: PropType<Component<any, any, any, Record<string, import("@vue/reactivity").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions>>;
};
isClickable: {
type: PropType<boolean>;
default: boolean;
};
isCompleted: {
type: PropType<boolean>;
default: boolean;
};
isVisible: {
type: PropType<boolean>;
default: boolean;
};
};
export declare type BStepItemProps = ExtractPropTypes<typeof BStepItemPropsDefinition>;