dist directory
This commit is contained in:
11
dist/components/FwbInput/composables/useInputClasses.d.ts
vendored
Normal file
11
dist/components/FwbInput/composables/useInputClasses.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
import { type Ref } from 'vue';
|
||||
import { type InputSize, type ValidationStatus } from '../types';
|
||||
export type UseInputClassesProps = {
|
||||
size: Ref<InputSize>;
|
||||
disabled: Ref<boolean>;
|
||||
validationStatus: Ref<ValidationStatus | undefined>;
|
||||
};
|
||||
export declare function useInputClasses(props: UseInputClassesProps): {
|
||||
inputClasses: Ref<string>;
|
||||
labelClasses: Ref<string>;
|
||||
};
|
||||
Reference in New Issue
Block a user