init component

This commit is contained in:
Robin COuret
2026-02-16 17:28:37 +01:00
parent 460c7a25e0
commit e0e50af706
4557 changed files with 666911 additions and 8 deletions

40
node_modules/buetify/lib/components/steps/shared.d.ts generated vendored Executable file
View File

@@ -0,0 +1,40 @@
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>;