/* 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 { OdsChipSize, OdsChipVariant } from "@ovhcloud/ods-core"; export namespace Components { interface OsdsChip { /** * Chip color theme * @see OdsChipAttributes.color */ "color"?: OdsThemeColorIntent; /** * Chip is in contrasterd mode or not * @see OdsChipAttributes.contrasted */ "contrasted"?: boolean; /** * Chip is disabled or not * @see OdsChipAttributes.disabled */ "disabled"?: boolean; /** * Chip as flex * @see OdsChipAttributes.flex */ "flex"?: boolean; /** * If the chip can be removed or not * @see OdsChipAttributes.removable */ "removable"?: boolean; /** * If the chip can be selected or not * @see OdsChipAttributes.selectable */ "selectable"?: boolean; /** * Chip size * @see OdsChipAttributes.size */ "size"?: OdsChipSize; /** * Chip variant * @see OdsChipAttributes.variant */ "variant"?: OdsChipVariant; } } declare global { interface HTMLOsdsChipElement extends Components.OsdsChip, HTMLStencilElement { } var HTMLOsdsChipElement: { prototype: HTMLOsdsChipElement; new (): HTMLOsdsChipElement; }; interface HTMLElementTagNameMap { "osds-chip": HTMLOsdsChipElement; } } declare namespace LocalJSX { interface OsdsChip { /** * Chip color theme * @see OdsChipAttributes.color */ "color"?: OdsThemeColorIntent; /** * Chip is in contrasterd mode or not * @see OdsChipAttributes.contrasted */ "contrasted"?: boolean; /** * Chip is disabled or not * @see OdsChipAttributes.disabled */ "disabled"?: boolean; /** * Chip as flex * @see OdsChipAttributes.flex */ "flex"?: boolean; /** * If the chip can be removed or not * @see OdsChipAttributes.removable */ "removable"?: boolean; /** * If the chip can be selected or not * @see OdsChipAttributes.selectable */ "selectable"?: boolean; /** * Chip size * @see OdsChipAttributes.size */ "size"?: OdsChipSize; /** * Chip variant * @see OdsChipAttributes.variant */ "variant"?: OdsChipVariant; } interface IntrinsicElements { "osds-chip": OsdsChip; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "osds-chip": LocalJSX.OsdsChip & JSXBase.HTMLAttributes; } } }