import { ToggleSwitchPassThrough, ToggleSwitchChangeEvent, ToggleSwitchHandleTemplateContext } from 'primeng/types/toggleswitch'; export * from 'primeng/types/toggleswitch'; import * as i0 from '@angular/core'; import { EventEmitter, ElementRef, TemplateRef, QueryList } from '@angular/core'; import * as i2 from 'primeng/api'; import { PrimeTemplate } from 'primeng/api'; import { BaseEditableHolder } from 'primeng/baseeditableholder'; import * as i1 from 'primeng/bind'; import { Bind } from 'primeng/bind'; import { BaseStyle } from 'primeng/base'; /** * * ToggleSwitch is used to select a boolean value. * * [Live Demo](https://www.primeng.org/toggleswitch/) * * @module toggleswitchstyle * */ declare enum ToggleSwitchClasses { /** * Class name of the root element */ root = "p-toggleswitch", /** * Class name of the input element */ input = "p-toggleswitch-input", /** * Class name of the slider element */ slider = "p-toggleswitch-slider" } declare class ToggleSwitchStyle extends BaseStyle { name: string; style: string; classes: { root: ({ instance }: { instance: any; }) => (string | { 'p-toggleswitch p-component': boolean; 'p-toggleswitch-checked': any; 'p-disabled': any; 'p-invalid': any; })[]; input: string; slider: string; handle: string; }; inlineStyles: { root: { position: string; }; }; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } interface ToggleSwitchStyle extends BaseStyle { } declare const TOGGLESWITCH_VALUE_ACCESSOR: any; /** * ToggleSwitch is used to select a boolean value. * @group Components */ declare class ToggleSwitch extends BaseEditableHolder { $pcToggleSwitch: ToggleSwitch | undefined; bindDirectiveInstance: Bind; onAfterViewChecked(): void; /** * Style class of the component. * @deprecated since v20.0.0, use `class` instead. * @group Props */ styleClass: string | undefined; /** * Index of the element in tabbing order. * @group Props */ tabindex: number | undefined; /** * Identifier of the input element. * @group Props */ inputId: string | undefined; /** * When present, it specifies that the component cannot be edited. * @group Props */ readonly: boolean | undefined; /** * Value in checked state. * @group Props */ trueValue: any; /** * Value in unchecked state. * @group Props */ falseValue: any; /** * Used to define a string that autocomplete attribute the current element. * @group Props */ ariaLabel: string | undefined; /** * Specifies the size of the component. * @defaultValue undefined * @group Props */ size: i0.InputSignal<"large" | "small" | undefined>; /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. * @group Props */ ariaLabelledBy: string | undefined; /** * When present, it specifies that the component should automatically get focus on load. * @group Props */ autofocus: boolean | undefined; /** * Callback to invoke when the on value change. * @param {ToggleSwitchChangeEvent} event - Custom change event. * @group Emits */ onChange: EventEmitter; input: ElementRef; /** * Custom handle template. * @param {ToggleSwitchHandleTemplateContext} context - handle context. * @see {@link ToggleSwitchHandleTemplateContext} * @group Templates */ handleTemplate: TemplateRef | undefined; _handleTemplate: TemplateRef | undefined; focused: boolean; _componentStyle: ToggleSwitchStyle; templates: QueryList; onHostClick(event: MouseEvent): void; onAfterContentInit(): void; onClick(event: Event): void; onFocus(): void; onBlur(): void; checked(): boolean; /** * @override * * @see {@link BaseEditableHolder.writeControlValue} * Writes the value to the control. */ writeControlValue(value: any, setModelValue: (value: any) => void): void; get dataP(): string | undefined; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; static ngAcceptInputType_tabindex: unknown; static ngAcceptInputType_readonly: unknown; static ngAcceptInputType_autofocus: unknown; } declare class ToggleSwitchModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { TOGGLESWITCH_VALUE_ACCESSOR, ToggleSwitch, ToggleSwitchClasses, ToggleSwitchModule, ToggleSwitchStyle };