/* 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 { OdsRadioButtonSize } from "@ovhcloud/ods-core"; export namespace Components { interface OsdsRadioButton { /** * The checked status of the radio button * @see OdsRadioButtonAttributes.checked */ "checked"?: boolean | undefined; /** * @see OdsRadioButtonAttributes.checking */ "checking"?: boolean | undefined; /** * The color theme * @see OdsRadioButtonAttributes.color */ "color"?: OdsThemeColorIntent; /** * Prevent the user from clicking on the radio button * @see OdsRadioButtonAttributes.disabled */ "disabled"?: boolean | undefined; /** * Display a focus style (only if interactive) * @see OdsRadioButtonAttributes.hasFocus */ "hasFocus"?: boolean | undefined; /** * Display an interactive style when clicking or hovering the radio button * @see OdsRadioButtonAttributes.interactive */ "interactive"?: boolean | undefined; /** * Size of the radio button * @see OdsRadioButtonAttributes.size */ "size"?: OdsRadioButtonSize; } } declare global { interface HTMLOsdsRadioButtonElement extends Components.OsdsRadioButton, HTMLStencilElement { } var HTMLOsdsRadioButtonElement: { prototype: HTMLOsdsRadioButtonElement; new (): HTMLOsdsRadioButtonElement; }; interface HTMLElementTagNameMap { "osds-radio-button": HTMLOsdsRadioButtonElement; } } declare namespace LocalJSX { interface OsdsRadioButton { /** * The checked status of the radio button * @see OdsRadioButtonAttributes.checked */ "checked"?: boolean | undefined; /** * @see OdsRadioButtonAttributes.checking */ "checking"?: boolean | undefined; /** * The color theme * @see OdsRadioButtonAttributes.color */ "color"?: OdsThemeColorIntent; /** * Prevent the user from clicking on the radio button * @see OdsRadioButtonAttributes.disabled */ "disabled"?: boolean | undefined; /** * Display a focus style (only if interactive) * @see OdsRadioButtonAttributes.hasFocus */ "hasFocus"?: boolean | undefined; /** * Display an interactive style when clicking or hovering the radio button * @see OdsRadioButtonAttributes.interactive */ "interactive"?: boolean | undefined; /** * Size of the radio button * @see OdsRadioButtonAttributes.size */ "size"?: OdsRadioButtonSize; } interface IntrinsicElements { "osds-radio-button": OsdsRadioButton; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "osds-radio-button": LocalJSX.OsdsRadioButton & JSXBase.HTMLAttributes; } } }