diff --git a/packages/orbit-components/src/ServiceLogo/README.md b/packages/orbit-components/src/ServiceLogo/README.md index 529848e7f3..620be1f786 100644 --- a/packages/orbit-components/src/ServiceLogo/README.md +++ b/packages/orbit-components/src/ServiceLogo/README.md @@ -29,8 +29,10 @@ Table below contains all types of the props available in ServiceLogo component. | code | size | | :---------------------- | :--------- | | `"AirHelp"` | `"small"` | -| `"Alipay"` | `"medium"` | -| `"Amex"` | `"large"` | +| `"AirHelpNew"` | `"medium"` | +| `"AirHelpPlus"` | `"large"` | +| `"Alipay"` | +| `"Amex"` | | `"Axa"` | | `"AxaAssistance"` | | `"AxaWhite"` | @@ -53,6 +55,7 @@ Table below contains all types of the props available in ServiceLogo component. | `"PayPal"` | | `"RentalCars"` | | `"Sherpa"` | +| `"Simtex"` | | `"Sofort"` | | `"TravelPulse"` | | `"Trustly"` | diff --git a/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Desktop-linux.png b/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Desktop-linux.png index 1bff45d63a..77c9cfe9c4 100644 Binary files a/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Desktop-linux.png and b/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Large-Desktop-linux.png b/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Large-Desktop-linux.png index b9eaa3b92b..ec9270e07c 100644 Binary files a/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Large-Desktop-linux.png and b/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Large-Mobile-linux.png b/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Large-Mobile-linux.png index 431ebed680..ca64f5f605 100644 Binary files a/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Large-Mobile-linux.png and b/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Small-Mobile-linux.png b/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Small-Mobile-linux.png index 4f668ab4b6..4add6ef782 100644 Binary files a/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Small-Mobile-linux.png and b/packages/orbit-components/src/ServiceLogo/ServiceLogo.ct.tsx-snapshots/visual-ServiceLogo-default-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/ServiceLogo/consts.mts b/packages/orbit-components/src/ServiceLogo/consts.mts index 9685363b1e..74ee088b35 100644 --- a/packages/orbit-components/src/ServiceLogo/consts.mts +++ b/packages/orbit-components/src/ServiceLogo/consts.mts @@ -1,5 +1,6 @@ export enum NAME_OPTIONS { AIRHELP = "AirHelp", + AIRHELPNEW = "AirHelpNew", AIRHELPPLUS = "AirHelpPlus", ALIPAY = "Alipay", AMEX = "Amex", diff --git a/packages/orbit-components/src/ServiceLogo/consts.ts b/packages/orbit-components/src/ServiceLogo/consts.ts index 9685363b1e..74ee088b35 100644 --- a/packages/orbit-components/src/ServiceLogo/consts.ts +++ b/packages/orbit-components/src/ServiceLogo/consts.ts @@ -1,5 +1,6 @@ export enum NAME_OPTIONS { AIRHELP = "AirHelp", + AIRHELPNEW = "AirHelpNew", AIRHELPPLUS = "AirHelpPlus", ALIPAY = "Alipay", AMEX = "Amex", diff --git a/packages/orbit-components/src/ServiceLogo/types.d.ts b/packages/orbit-components/src/ServiceLogo/types.d.ts index 30f19197ef..a930bbc905 100644 --- a/packages/orbit-components/src/ServiceLogo/types.d.ts +++ b/packages/orbit-components/src/ServiceLogo/types.d.ts @@ -5,6 +5,7 @@ import type * as Common from "../common/types"; export type Size = "small" | "medium" | "large"; type Name = | "AirHelp" + | "AirHelpNew" | "AirHelpPlus" | "Alipay" | "Amex"