/* eslint-disable */ /* tslint:disable */ /** * This is an autogenerated file created by the Stencil compiler. * It contains typing information for all components that exist in this project. */ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime"; import { OdsThemeColorIntent } from "@ovhcloud/ods-theming"; import { OdsCheckboxButtonSize } from "@ovhcloud/ods-core"; export namespace Components { interface OsdsCheckboxButton { /** * The checked status of the checkbox button * @see OdsCheckboxButtonAttributes.checked */ "checked"?: boolean | undefined; /** * @see OdsCheckboxButtonAttributes.checking */ "checking"?: boolean | undefined; /** * The color theme * @see OdsCheckboxButtonAttributes.color */ "color"?: OdsThemeColorIntent; /** * Prevent the user from clicking on the radio button * @see OdsCheckboxButtonAttributes.disabled */ "disabled"?: boolean | undefined; /** * Display a focus style (only if interactive) * @see OdsCheckboxButtonAttributes.hasFocus */ "hasFocus"?: boolean | undefined; /** * The indeterminate status of the checkbox button (override checked status) * @see OdsCheckboxButtonAttributes.indeterminate */ "indeterminate"?: boolean | undefined; /** * Display an interactive style when clicking or hovering the radio button * @see OdsCheckboxButtonAttributes.interactive */ "interactive"?: boolean | undefined; /** * Size of the radio button * @see OdsCheckboxButtonAttributes.label */ "size"?: OdsCheckboxButtonSize; } } declare global { interface HTMLOsdsCheckboxButtonElement extends Components.OsdsCheckboxButton, HTMLStencilElement { } var HTMLOsdsCheckboxButtonElement: { prototype: HTMLOsdsCheckboxButtonElement; new (): HTMLOsdsCheckboxButtonElement; }; interface HTMLElementTagNameMap { "osds-checkbox-button": HTMLOsdsCheckboxButtonElement; } } declare namespace LocalJSX { interface OsdsCheckboxButton { /** * The checked status of the checkbox button * @see OdsCheckboxButtonAttributes.checked */ "checked"?: boolean | undefined; /** * @see OdsCheckboxButtonAttributes.checking */ "checking"?: boolean | undefined; /** * The color theme * @see OdsCheckboxButtonAttributes.color */ "color"?: OdsThemeColorIntent; /** * Prevent the user from clicking on the radio button * @see OdsCheckboxButtonAttributes.disabled */ "disabled"?: boolean | undefined; /** * Display a focus style (only if interactive) * @see OdsCheckboxButtonAttributes.hasFocus */ "hasFocus"?: boolean | undefined; /** * The indeterminate status of the checkbox button (override checked status) * @see OdsCheckboxButtonAttributes.indeterminate */ "indeterminate"?: boolean | undefined; /** * Display an interactive style when clicking or hovering the radio button * @see OdsCheckboxButtonAttributes.interactive */ "interactive"?: boolean | undefined; /** * Size of the radio button * @see OdsCheckboxButtonAttributes.label */ "size"?: OdsCheckboxButtonSize; } interface IntrinsicElements { "osds-checkbox-button": OsdsCheckboxButton; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "osds-checkbox-button": LocalJSX.OsdsCheckboxButton & JSXBase.HTMLAttributes; } } }