@coreui/angular
Version:
CoreUI Components Library for Angular
36 lines (35 loc) • 2.09 kB
TypeScript
import { ElementRef, InputSignal, InputSignalWithTransform } from '@angular/core';
import { BooleanInput, Colors } from '../coreui.types';
import * as i0 from "@angular/core";
export declare class ListGroupItemDirective {
static ngAcceptInputType_active: BooleanInput;
static ngAcceptInputType_disabled: BooleanInput;
readonly hostElement: ElementRef<any>;
/**
* Toggle the active state for the component.
* @type InputSignalWithTransform<boolean, unknown>
*/
readonly active: InputSignalWithTransform<boolean, unknown>;
/**
* Sets the color context of the component to one of CoreUI’s themed colors.
* @type InputSignal<boolean | undefined>
*/
readonly color: InputSignal<Colors | undefined>;
/**
* Set disabled attr for the host element. [docs]
* @type boolean
*/
readonly disabled: InputSignalWithTransform<boolean, unknown>;
/**
* The tabindex attribute specifies the tab order of an element (when the "tab" button is used for navigating).
*/
readonly tabindex: InputSignalWithTransform<number | undefined, unknown>;
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
readonly _disabled: import("@angular/core").Signal<boolean>;
readonly ariaDisabled: import("@angular/core").Signal<true | null>;
readonly attrDisabled: import("@angular/core").Signal<"" | null>;
readonly tabIndex: import("@angular/core").Signal<number | "-1" | null>;
readonly ariaCurrent: import("@angular/core").Signal<true | null>;
static ɵfac: i0.ɵɵFactoryDeclaration<ListGroupItemDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<ListGroupItemDirective, "[cListGroupItem], c-list-group-item", ["cListGroupItem"], { "active": { "alias": "active"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
}