Package build for development
This commit is contained in:
14
dist/components/utils/FlowbiteThemable/composables/useFlowbiteThemable.d.ts
vendored
Normal file
14
dist/components/utils/FlowbiteThemable/composables/useFlowbiteThemable.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import { type Ref } from 'vue';
|
||||
import type { FlowbiteTheme } from '../types';
|
||||
type UseFlowbiteThemableReturns = {
|
||||
backgroundClasses: Ref<string>;
|
||||
borderClasses: Ref<string>;
|
||||
color: Ref<FlowbiteTheme | undefined>;
|
||||
disabledClasses: Ref<string>;
|
||||
focusClasses: Ref<string>;
|
||||
hoverClasses: Ref<string>;
|
||||
isActive: Ref<boolean>;
|
||||
textClasses: Ref<string>;
|
||||
};
|
||||
export declare function useFlowbiteThemable(_theme?: FlowbiteTheme): UseFlowbiteThemableReturns;
|
||||
export {};
|
||||
12
dist/components/utils/FlowbiteThemable/composables/useFlowbiteThemableChildClasses.d.ts
vendored
Normal file
12
dist/components/utils/FlowbiteThemable/composables/useFlowbiteThemableChildClasses.d.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
import { type Ref } from 'vue';
|
||||
import type { ThemableChildrenApply } from '../types';
|
||||
import type { FlowbiteTheme } from '../../../../components/utils/FlowbiteThemable/types';
|
||||
type UseFlowbiteThemableChildReturns = {
|
||||
classes: Ref<string>;
|
||||
};
|
||||
type UseFlowbiteThemableChildProps = {
|
||||
apply: Ref<ThemableChildrenApply[]>;
|
||||
theme?: Ref<FlowbiteTheme | undefined>;
|
||||
};
|
||||
export declare function useFlowbiteThemableChildClasses(props: UseFlowbiteThemableChildProps): UseFlowbiteThemableChildReturns;
|
||||
export {};
|
||||
Reference in New Issue
Block a user