injectFlowbiteIndicatorState
No documentation has been provided.
Presentation
const injectFlowbiteIndicatorState : <
U = {
readonly config : FlowbiteIndicatorConfig ;
readonly color: InputSignal <keyof FlowbiteIndicatorColors >;
readonly size: InputSignal <keyof FlowbiteIndicatorSizes >;
readonly border: InputSignalWithTransform <boolean, unknown>;
readonly position: InputSignal <
keyof FlowbiteIndicatorPositions | undefined
>;
readonly customTheme: InputSignal <{
host?:
| {
base?: string | undefined;
transition ?: string | undefined;
border?:
| { off?: string | undefined; on?: string | undefined }
| undefined;
color?:
| {
[x: string]:
| { light?: string | undefined; dark?: string | undefined }
| undefined;
warning?:
| { light?: string | undefined; dark?: string | undefined }
| undefined;
default?:
| { light?: string | undefined; dark?: string | undefined }
| undefined;
info?:
| { light?: string | undefined; dark?: string | undefined }
| undefined;
failure?:
| { light?: string | undefined; dark?: string | undefined }
| undefined;
success?:
| { light?: string | undefined; dark?: string | undefined }
| undefined;
primary?:
| { light?: string | undefined; dark?: string | undefined }
| undefined;
}
| undefined;
size?:
| {
[x: string]: string | undefined;
xs?: string | undefined;
sm?: string | undefined;
md?: string | undefined;
lg?: string | undefined;
xl?: string | undefined;
}
| undefined;
position?:
| {
[x: string]: string | undefined;
"bottom-left"?: string | undefined;
"bottom-right"?: string | undefined;
"bottom-center"?: string | undefined;
"top-left"?: string | undefined;
"top-center"?: string | undefined;
"top-right"?: string | undefined;
"center-left"?: string | undefined;
center?: string | undefined;
"center-right"?: string | undefined;
}
| undefined;
}
| undefined;
}>;
readonly theme: Signal <{ host: { root: string } }>;
readonly state : CreatedState<Indicator >;
},
>(
injectOptions?: InjectOptions | undefined,
) => Signal <State<U>>;