/* 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 { ODS_COUNTRY_ISO_CODE, OdsLocationTileVariant, OdsTileSize } from "@ovhcloud/ods-core"; export namespace Components { interface OsdsLocationTile { /** * If the tile is checked or not * @see OdsLocationTileAttributes.checked */ "checked": boolean; /** * awaiting a change of checked state * @see OdsLocationTileAttributes.checking */ "checking": boolean; /** * Tile color theme * @see OdsLocationTileAttributes.color */ "color"?: OdsThemeColorIntent; /** * Tile color theme * @see OdsLocationTileAttributes.disabled */ "disabled": boolean; /** * Tile as flex * @see OdsLocationTileAttributes.flex */ "flex": boolean | undefined; /** * indicate if the location tile has to be displayed in focused state * @see OdsLocationTileAttributes.hasFocus */ "hasFocus": boolean; /** * If the tile can be checked or not * @see OdsLocationTileAttributes.interactive */ "interactive": boolean | undefined; /** * Tile country iso code * @see OdsLocationTileAttributes.iso */ "iso"?: ODS_COUNTRY_ISO_CODE; /** * Tile size * @see OdsLocationTileAttributes.size */ "size"?: OdsTileSize; /** * Tile variant * @see OdsLocationTileAttributes.variant */ "variant"?: OdsLocationTileVariant; } } declare global { interface HTMLOsdsLocationTileElement extends Components.OsdsLocationTile, HTMLStencilElement { } var HTMLOsdsLocationTileElement: { prototype: HTMLOsdsLocationTileElement; new (): HTMLOsdsLocationTileElement; }; interface HTMLElementTagNameMap { "osds-location-tile": HTMLOsdsLocationTileElement; } } declare namespace LocalJSX { interface OsdsLocationTile { /** * If the tile is checked or not * @see OdsLocationTileAttributes.checked */ "checked"?: boolean; /** * awaiting a change of checked state * @see OdsLocationTileAttributes.checking */ "checking"?: boolean; /** * Tile color theme * @see OdsLocationTileAttributes.color */ "color"?: OdsThemeColorIntent; /** * Tile color theme * @see OdsLocationTileAttributes.disabled */ "disabled"?: boolean; /** * Tile as flex * @see OdsLocationTileAttributes.flex */ "flex"?: boolean | undefined; /** * indicate if the location tile has to be displayed in focused state * @see OdsLocationTileAttributes.hasFocus */ "hasFocus"?: boolean; /** * If the tile can be checked or not * @see OdsLocationTileAttributes.interactive */ "interactive"?: boolean | undefined; /** * Tile country iso code * @see OdsLocationTileAttributes.iso */ "iso"?: ODS_COUNTRY_ISO_CODE; /** * Tile size * @see OdsLocationTileAttributes.size */ "size"?: OdsTileSize; /** * Tile variant * @see OdsLocationTileAttributes.variant */ "variant"?: OdsLocationTileVariant; } interface IntrinsicElements { "osds-location-tile": OsdsLocationTile; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "osds-location-tile": LocalJSX.OsdsLocationTile & JSXBase.HTMLAttributes; } } }