diff --git a/app/src/main/java/com/orange/ouds/app/ui/components/button/ButtonDemoScreen.kt b/app/src/main/java/com/orange/ouds/app/ui/components/button/ButtonDemoScreen.kt index 1c912f84b1..1e3c0562df 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/components/button/ButtonDemoScreen.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/components/button/ButtonDemoScreen.kt @@ -37,6 +37,7 @@ import com.orange.ouds.core.component.OudsButton import com.orange.ouds.core.component.OudsButtonAppearance import com.orange.ouds.core.component.OudsButtonIcon import com.orange.ouds.core.component.OudsButtonLoader +import com.orange.ouds.core.component.OudsSmallButton import com.orange.ouds.theme.OudsVersion @Composable @@ -81,6 +82,13 @@ private fun ButtonDemoBottomSheetContent(state: ButtonDemoState) { onCheckedChange = { hasLoader = it }, enabled = loaderSwitchEnabled ) + CustomizationFilterChips( + applyTopPadding = true, + label = stringResource(R.string.app_components_common_size_tech), + chipLabels = ButtonDemoState.Size.entries.map { stringResource(it.labelRes) }, + selectedChipIndex = ButtonDemoState.Size.entries.indexOf(size), + onSelectionChange = { index -> size = ButtonDemoState.Size.entries[index] } + ) CustomizationFilterChips( applyTopPadding = true, label = stringResource(R.string.app_components_common_layout_tech), @@ -118,18 +126,17 @@ private fun ButtonDemoContent(state: ButtonDemoState) { tinted = icon == ButtonDemoState.Icon.Tinted ) val loader = if (hasLoader) OudsButtonLoader(null) else null - when (layout) { - ButtonDemoState.Layout.TextOnly -> { - OudsButton( + + when (size) { + ButtonDemoState.Size.Default -> when (layout) { + ButtonDemoState.Layout.TextOnly -> OudsButton( label = label, onClick = {}, enabled = enabled, loader = loader, appearance = appearance ) - } - ButtonDemoState.Layout.TextAndIcon -> { - OudsButton( + ButtonDemoState.Layout.TextAndIcon -> OudsButton( icon = buttonIcon, label = label, onClick = {}, @@ -137,9 +144,31 @@ private fun ButtonDemoContent(state: ButtonDemoState) { loader = loader, appearance = appearance ) + ButtonDemoState.Layout.IconOnly -> OudsButton( + icon = buttonIcon, + onClick = {}, + enabled = enabled, + loader = loader, + appearance = appearance + ) } - ButtonDemoState.Layout.IconOnly -> { - OudsButton( + ButtonDemoState.Size.Small -> when (layout) { + ButtonDemoState.Layout.TextOnly -> OudsSmallButton( + label = label, + onClick = {}, + enabled = enabled, + loader = loader, + appearance = appearance + ) + ButtonDemoState.Layout.TextAndIcon -> OudsSmallButton( + icon = buttonIcon, + label = label, + onClick = {}, + enabled = enabled, + loader = loader, + appearance = appearance + ) + ButtonDemoState.Layout.IconOnly -> OudsSmallButton( icon = buttonIcon, onClick = {}, enabled = enabled, @@ -154,9 +183,18 @@ private fun ButtonDemoContent(state: ButtonDemoState) { private fun Code.Builder.buttonDemoCodeSnippet(state: ButtonDemoState, themeDrawableResources: ThemeDrawableResources) { with(state) { coloredBoxCall(onColoredBox) { - functionCall("OudsButton") { + val functionName = when (size) { + ButtonDemoState.Size.Default -> "OudsButton" + ButtonDemoState.Size.Small -> "OudsSmallButton" + } + functionCall(functionName) { if (layout in listOf(ButtonDemoState.Layout.IconOnly, ButtonDemoState.Layout.TextAndIcon)) { - iconArgument("icon", themeDrawableResources.tipsAndTricks, R.string.app_components_common_icon_a11y, icon == ButtonDemoState.Icon.Tinted) + iconArgument( + "icon", + themeDrawableResources.tipsAndTricks, + R.string.app_components_common_icon_a11y, + icon == ButtonDemoState.Icon.Tinted + ) } if (layout in listOf(ButtonDemoState.Layout.TextOnly, ButtonDemoState.Layout.TextAndIcon)) { labelArgument(label) diff --git a/app/src/main/java/com/orange/ouds/app/ui/components/button/ButtonDemoState.kt b/app/src/main/java/com/orange/ouds/app/ui/components/button/ButtonDemoState.kt index 46e8f622d5..3a87852b1e 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/components/button/ButtonDemoState.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/components/button/ButtonDemoState.kt @@ -31,10 +31,11 @@ fun rememberButtonDemoState( onColoredBox: Boolean = false, hasLoader: Boolean = false, appearance: OudsButtonAppearance = OudsButtonDefaults.Appearance, + size: ButtonDemoState.Size = ButtonDemoState.Size.entries.first(), layout: ButtonDemoState.Layout = ButtonDemoState.Layout.entries.first(), icon: ButtonDemoState.Icon = ButtonDemoState.Icon.Tinted -) = rememberSaveable(label, enabled, onColoredBox, hasLoader, appearance, layout, icon, saver = ButtonDemoState.Saver) { - ButtonDemoState(label, enabled, onColoredBox, hasLoader, appearance, layout, icon) +) = rememberSaveable(label, enabled, onColoredBox, hasLoader, appearance, size, layout, icon, saver = ButtonDemoState.Saver) { + ButtonDemoState(label, enabled, onColoredBox, hasLoader, appearance, size, layout, icon) } class ButtonDemoState( @@ -43,6 +44,7 @@ class ButtonDemoState( onColoredBox: Boolean, hasLoader: Boolean, appearance: OudsButtonAppearance, + size: Size, layout: Layout, icon: Icon ) : BaseButtonDemoState(enabled, onColoredBox, hasLoader) { @@ -56,25 +58,27 @@ class ButtonDemoState( save = { state -> with(state) { listOf( + with(BaseButtonDemoState.Saver) { save(state) }, label, appearance, + size, layout, - icon, - with(BaseButtonDemoState.Saver) { save(state) }, + icon ) } }, restore = { list: List -> - val baseButtonDemoState = list[4]?.let { BaseButtonDemoState.Saver.restore(it) } + val baseButtonDemoState = list[0]?.let { BaseButtonDemoState.Saver.restore(it) } baseButtonDemoState?.run { ButtonDemoState( - list[0] as String, + list[1] as String, enabled, onColoredBox, hasLoader, - list[1] as OudsButtonAppearance, - list[2] as Layout, - list[3] as Icon + list[2] as OudsButtonAppearance, + list[3] as Size, + list[4] as Layout, + list[5] as Icon ) } } @@ -83,6 +87,8 @@ class ButtonDemoState( var label: String by mutableStateOf(label) + var size: Size by mutableStateOf(size) + var layout: Layout by mutableStateOf(layout) private var _appearance: OudsButtonAppearance by mutableStateOf(appearance) @@ -106,6 +112,11 @@ class ButtonDemoState( val enabledIcons: List get() = if (layout != Layout.TextOnly) Icon.entries else emptyList() + enum class Size(@StringRes val labelRes: Int) { + Default(R.string.app_components_button_button_defaultSize_tech), + Small(R.string.app_components_common_smallSize_tech) + } + enum class Layout(@StringRes val labelRes: Int) { TextOnly(R.string.app_components_common_textOnlyLayout_tech), TextAndIcon(R.string.app_components_common_textAndIconLayout_tech), diff --git a/app/src/main/java/com/orange/ouds/app/ui/components/floatingactionbutton/FloatingActionButtonDemoScreen.kt b/app/src/main/java/com/orange/ouds/app/ui/components/floatingactionbutton/FloatingActionButtonDemoScreen.kt index 64ea554078..deb1bd2eb5 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/components/floatingactionbutton/FloatingActionButtonDemoScreen.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/components/floatingactionbutton/FloatingActionButtonDemoScreen.kt @@ -110,47 +110,35 @@ private fun FloatingActionButtonDemoContent(state: FloatingActionButtonDemoState tinted = icon == FloatingActionButtonDemoState.Icon.Tinted ) when (size) { - FloatingActionButtonDemoState.Size.Small -> { - OudsSmallFloatingActionButton( + FloatingActionButtonDemoState.Size.Small -> OudsSmallFloatingActionButton( + icon = floatingActionButtonIcon, + onClick = {}, + appearance = appearance + ) + FloatingActionButtonDemoState.Size.Medium -> when (layout) { + FloatingActionButtonDemoState.Layout.IconOnly -> OudsFloatingActionButton( icon = floatingActionButtonIcon, onClick = {}, appearance = appearance ) - } - FloatingActionButtonDemoState.Size.Medium -> { - when (layout) { - FloatingActionButtonDemoState.Layout.IconOnly -> { - OudsFloatingActionButton( - icon = floatingActionButtonIcon, - onClick = {}, - appearance = appearance - ) - } - FloatingActionButtonDemoState.Layout.TextAndIcon -> { - OudsExtendedFloatingActionButton( - label = label, - icon = floatingActionButtonIcon, - onClick = {}, - expanded = expanded, - appearance = appearance - ) - } - FloatingActionButtonDemoState.Layout.TextOnly -> { - OudsExtendedFloatingActionButton( - label = label, - onClick = {}, - appearance = appearance - ) - } - } - } - FloatingActionButtonDemoState.Size.Large -> { - OudsLargeFloatingActionButton( + FloatingActionButtonDemoState.Layout.TextAndIcon -> OudsExtendedFloatingActionButton( + label = label, icon = floatingActionButtonIcon, onClick = {}, + expanded = expanded, + appearance = appearance + ) + FloatingActionButtonDemoState.Layout.TextOnly -> OudsExtendedFloatingActionButton( + label = label, + onClick = {}, appearance = appearance ) } + FloatingActionButtonDemoState.Size.Large -> OudsLargeFloatingActionButton( + icon = floatingActionButtonIcon, + onClick = {}, + appearance = appearance + ) } } } @@ -167,7 +155,12 @@ private fun Code.Builder.floatingActionButtonDemoCodeSnippet(state: FloatingActi labelArgument(label) } if (layout != FloatingActionButtonDemoState.Layout.TextOnly) { - iconArgument("icon", themeDrawableResources.tipsAndTricks, R.string.app_components_common_icon_a11y, icon == FloatingActionButtonDemoState.Icon.Tinted) + iconArgument( + "icon", + themeDrawableResources.tipsAndTricks, + R.string.app_components_common_icon_a11y, + icon == FloatingActionButtonDemoState.Icon.Tinted + ) } if (layout == FloatingActionButtonDemoState.Layout.TextAndIcon && !expanded) { typedArgument("expanded", expanded) diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 9c0442ce9a..b1f7b472a7 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -218,6 +218,7 @@ Button Button is a UI element that triggers an action or event, and is used to initiate tasks or confirming an action. Button + Default Navigation button Chevron diff --git a/core-test/src/main/java/com/orange/ouds/core/test/OudsCircularProgressIndicatorTest.kt b/core-test/src/main/java/com/orange/ouds/core/test/OudsCircularProgressIndicatorTest.kt index 23ec447b14..97aa16b905 100644 --- a/core-test/src/main/java/com/orange/ouds/core/test/OudsCircularProgressIndicatorTest.kt +++ b/core-test/src/main/java/com/orange/ouds/core/test/OudsCircularProgressIndicatorTest.kt @@ -13,19 +13,39 @@ package com.orange.ouds.core.test import com.orange.ouds.core.utilities.OudsPreviewableComponent +import org.junit.experimental.runners.Enclosed import org.junit.runner.RunWith import org.junit.runners.Parameterized -@RunWith(Parameterized::class) -internal class OudsCircularProgressIndicatorTest(parameter: Any) : OudsComponentSnapshotTest( - OudsPreviewableComponent.CircularProgressIndicator, - parameter, - OudsComponentTestSuite.theme -) { - - companion object { - @JvmStatic - @Parameterized.Parameters - internal fun data() = OudsPreviewableComponent.CircularProgressIndicator.parameters +@RunWith(Enclosed::class) +internal class OudsCircularProgressIndicatorTest { + + @RunWith(Parameterized::class) + class Default(parameter: Any) : OudsComponentSnapshotTest( + OudsPreviewableComponent.CircularProgressIndicator.Default, + parameter, + OudsComponentTestSuite.theme + ) { + + companion object { + @JvmStatic + @Parameterized.Parameters + internal fun data() = OudsPreviewableComponent.CircularProgressIndicator.Default.parameters + } + } + + + @RunWith(Parameterized::class) + class Sized(parameter: Any) : OudsComponentSnapshotTest( + OudsPreviewableComponent.CircularProgressIndicator.Sized, + parameter, + OudsComponentTestSuite.theme + ) { + + companion object { + @JvmStatic + @Parameterized.Parameters + internal fun data() = OudsPreviewableComponent.CircularProgressIndicator.Sized.parameters + } } } diff --git a/core-test/src/main/java/com/orange/ouds/core/test/OudsComponentTestSuite.kt b/core-test/src/main/java/com/orange/ouds/core/test/OudsComponentTestSuite.kt index 1dcc270109..a436984263 100644 --- a/core-test/src/main/java/com/orange/ouds/core/test/OudsComponentTestSuite.kt +++ b/core-test/src/main/java/com/orange/ouds/core/test/OudsComponentTestSuite.kt @@ -42,6 +42,7 @@ import org.junit.runners.Suite OudsPinCodeInputTest::class, OudsRadioButtonItemTest::class, OudsRadioButtonTest::class, + OudsSmallButtonTest::class, OudsSuggestionChipTest::class, OudsSwitchItemTest::class, OudsSwitchTest::class, diff --git a/core-test/src/main/java/com/orange/ouds/core/test/OudsNavigationButtonTest.kt b/core-test/src/main/java/com/orange/ouds/core/test/OudsNavigationButtonTest.kt index d25b98c7a0..ea29533ee5 100644 --- a/core-test/src/main/java/com/orange/ouds/core/test/OudsNavigationButtonTest.kt +++ b/core-test/src/main/java/com/orange/ouds/core/test/OudsNavigationButtonTest.kt @@ -33,9 +33,15 @@ internal class OudsNavigationButtonTest { } } + class WithRoundedCorners : OudsComponentSnapshotTest( + OudsPreviewableComponent.NavigationButton.WithRoundedCorners, + parameter = null, + OudsComponentTestSuite.theme + ) + class OnTwoLines : OudsComponentSnapshotTest( OudsPreviewableComponent.NavigationButton.OnTwoLines, parameter = null, OudsComponentTestSuite.theme ) -} \ No newline at end of file +} diff --git a/core-test/src/main/java/com/orange/ouds/core/test/OudsSmallButtonTest.kt b/core-test/src/main/java/com/orange/ouds/core/test/OudsSmallButtonTest.kt new file mode 100644 index 0000000000..b8423f0d8b --- /dev/null +++ b/core-test/src/main/java/com/orange/ouds/core/test/OudsSmallButtonTest.kt @@ -0,0 +1,54 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.core.test + +import com.orange.ouds.core.utilities.OudsPreviewableComponent +import org.junit.experimental.runners.Enclosed +import org.junit.runner.RunWith +import org.junit.runners.Parameterized + +@RunWith(Enclosed::class) +internal class OudsSmallButtonTest { + + @RunWith(Parameterized::class) + class Default(parameter: Any) : OudsComponentSnapshotTest( + OudsPreviewableComponent.SmallButton.Default, + parameter, + OudsComponentTestSuite.theme + ) { + + companion object { + @JvmStatic + @Parameterized.Parameters + internal fun data() = OudsPreviewableComponent.SmallButton.Default.parameters + } + } + + class WithRoundedCorners : OudsComponentSnapshotTest( + OudsPreviewableComponent.SmallButton.WithRoundedCorners, + parameter = null, + OudsComponentTestSuite.theme + ) + + class OnTwoLines : OudsComponentSnapshotTest( + OudsPreviewableComponent.SmallButton.OnTwoLines, + parameter = null, + OudsComponentTestSuite.theme + ) + + class WithUntintedIcon : OudsComponentSnapshotTest( + OudsPreviewableComponent.SmallButton.WithUntintedIcon, + parameter = null, + OudsComponentTestSuite.theme + ) +} diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsButton.kt b/core/src/main/java/com/orange/ouds/core/component/OudsButton.kt index 4e34575f87..542ef13900 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsButton.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsButton.kt @@ -81,6 +81,9 @@ import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings +import com.orange.ouds.theme.tokens.OudsKeyToken +import com.orange.ouds.theme.tokens.OudsSizeKeyToken +import com.orange.ouds.theme.tokens.OudsSpaceKeyToken import com.orange.ouds.theme.tokens.components.OudsButtonMonoTokens /** @@ -90,6 +93,9 @@ import com.orange.ouds.theme.tokens.components.OudsButtonMonoTokens * This version of the button uses the *text only* layout, which is the most common layout. * Other layouts are available for this component: *text + icon* and *icon only*. * + * This is the default size of the component. This size is used for the vast majority of applications. + * A small size is also available via [OudsSmallButton]. + * * Note that if it is placed in an [OudsColoredBox], its monochrome variant is automatically displayed. * The tokens associated with these specific colors can be customized by overriding [OudsButtonMonoTokens]. * @@ -100,7 +106,7 @@ import com.orange.ouds.theme.tokens.components.OudsButtonMonoTokens * * > Design name: Button * - * > Design version: 3.2.0 + * > Design version: 3.3.0 * * @param label Label displayed in the button describing the button action. Use action verbs or phrases to tell the user what will happen next. * @param onClick Callback invoked when the button is clicked. @@ -147,6 +153,9 @@ fun OudsButton( * This version of the button uses the *icon only* layout, which is typically used in business or back-office interfaces. It is rarely used alone (usually part of a group of elements). * Other layouts are available for this component: *text only* and *text + icon*. * + * This is the default size of the component. This size is used for the vast majority of applications. + * A small size is also available via [OudsSmallButton]. + * * Note that if it is placed in an [OudsColoredBox], its monochrome variant is automatically displayed. * The tokens associated with these specific colors can be customized by overriding [OudsButtonMonoTokens]. * @@ -157,7 +166,7 @@ fun OudsButton( * * > Design name: Button * - * > Design version: 3.2.0 + * > Design version: 3.3.0 * * @param icon Icon displayed in the button. Use an icon to add additional affordance where the icon has a clear and well-established meaning. * @param onClick Callback invoked when the button is clicked. @@ -207,6 +216,9 @@ fun OudsButton( * "Play" button is standard in the context of TV or video streaming). * Other layouts are available for this component: *text only* and *icon only*. * + * This is the default size of the component. This size is used for the vast majority of applications. + * A small size is also available via [OudsSmallButton]. + * * Note that if it is placed in an [OudsColoredBox], its monochrome variant is automatically displayed. * The tokens associated with these specific colors can be customized by overriding [OudsButtonMonoTokens]. * @@ -217,7 +229,7 @@ fun OudsButton( * * > Design name: Button * - * > Design version: 3.2.0 + * > Design version: 3.3.0 * * @param icon Icon displayed in the button. Use an icon to add additional affordance where the icon has a clear and well-established meaning. * @param label Label displayed in the button describing the button action. Use action verbs or phrases to tell the user what will happen next. @@ -273,6 +285,7 @@ internal fun OudsButton( loader: OudsButtonLoader? = null, appearance: OudsButtonAppearance = OudsButtonDefaults.Appearance, iconOnlyBadge: OudsButtonIconBadge? = null, + size: OudsButtonSize = OudsButtonSize.Default, interactionSource: MutableInteractionSource? = null ) { val icon = nullableIcon @@ -289,7 +302,15 @@ internal fun OudsButton( val interactionState by interactionSource.collectInteractionStateAsState() val state = getButtonState(enabled = enabled, loader = loader, interactionState = interactionState) val iconScale = if (icon != null && label == null) LocalConfiguration.current.fontScale else 1.0f - val maxHeight = if (icon != null && label == null) buttonTokens.sizeMaxHeightIconOnly.value * iconScale else Dp.Unspecified + + val minWidth = getSize(size = size, default = buttonTokens.sizeMinWidthDefault, small = buttonTokens.sizeMinWidthSmall) + val minHeight = getSize(size = size, default = buttonTokens.sizeMinHeightDefault, small = buttonTokens.sizeMinHeightSmall) + val maxHeight = if (icon != null && label == null) { + getSize(size = size, default = buttonTokens.sizeMaxWidthHeightIconOnlyDefault, small = buttonTokens.sizeMaxWidthHeightIconOnlySmall) * iconScale + } else { + Dp.Unspecified + } + val borderRadius = if (LocalThemeSettings.current.roundedCornerButtons == true) buttonTokens.borderRadiusRounded else buttonTokens.borderRadiusDefault val shape = RoundedCornerShape(borderRadius.value) @@ -317,8 +338,8 @@ internal fun OudsButton( Box( modifier = modifier - .widthIn(min = buttonTokens.sizeMinWidth.value) - .heightIn(min = buttonTokens.sizeMinHeight.value, max = maxHeight) + .widthIn(min = minWidth) + .heightIn(min = minHeight, max = maxHeight) .background(color = backgroundColor.value, shape = shape) .run { ifNotNull(borderWidth.value, borderColor.value) { borderWidth, borderColor -> @@ -341,11 +362,25 @@ internal fun OudsButton( contentAlignment = Alignment.Center ) { if (state == OudsButtonState.Loading) { - ProgressIndicator(appearance = appearance, progress = loader?.progress, scale = iconScale) + val progressIndicatorSize = getSize( + size = size, + default = buttonTokens.sizeProgressIndicatorDefault, + small = buttonTokens.sizeProgressIndicatorSmall + ) + val modifier = Modifier + .size(progressIndicatorSize) + .semantics { hideFromAccessibility() } + val loadingContentColor = contentColor(appearance = appearance, state = OudsButtonState.Loading) + OudsCircularProgressIndicator( + modifier = modifier, + nullableProgress = loader?.progress?.let { { it } }, + track = false, + color = loadingContentColor + ) } val alpha = if (state == OudsButtonState.Loading) 0f else 1f - val paddingValues = contentPadding(component = component, icon = icon, label = label) + val paddingValues = contentPadding(component = component, icon = icon, label = label, size = size) Row( modifier = Modifier .alpha(alpha = alpha) @@ -361,11 +396,15 @@ internal fun OudsButton( } if (icon != null) { - val size = if (label == null) buttonTokens.sizeIconOnly else buttonTokens.sizeIcon + val iconSize = getSize( + size = size, + default = if (label == null) buttonTokens.sizeIconOnlyDefault else buttonTokens.sizeIconDefault, + small = if (label == null) buttonTokens.sizeIconOnlySmall else buttonTokens.sizeIconSmall + ) val iconContent: @Composable () -> Unit = { icon.Content( modifier = Modifier - .iconSize(size.value * iconScale, icon.tinted) + .iconSize(iconSize * iconScale, icon.tinted) .semantics { contentDescription = when (label) { // Ugly workaround to make TalkBack read badge and icon content descriptions correctly @@ -389,7 +428,7 @@ internal fun OudsButton( return@with buttonEndPadding - maximumBorderWidth - iconBadgeEndPadding } OudsBadgedIcon( - modifier = Modifier.size(size.value * iconScale), + modifier = Modifier.size(iconSize * iconScale), badgeCount = iconOnlyBadge.count, badgeBorderColor = iconOnlyBadge.borderColor, badgeMaximumEndOverflow = maximumEndOverflow, @@ -667,22 +706,22 @@ private fun contentColor(appearance: OudsButtonAppearance, state: OudsButtonStat } @Composable -private fun contentPadding(component: OudsButtonComponent, icon: OudsButtonIcon?, label: String?): PaddingValues { +private fun contentPadding(component: OudsButtonComponent, icon: OudsButtonIcon?, label: String?, size: OudsButtonSize): PaddingValues { return with(OudsTheme.componentsTokens.button) { when (component) { is OudsButtonComponent.Button -> when { icon != null && label != null -> PaddingValues( - start = spacePaddingInlineIconStart.value, - top = spacePaddingBlock.value, - end = spacePaddingInlineEndIconStart.value, - bottom = spacePaddingBlock.value + start = getSpace(size = size, default = spacePaddingInlineIconStartDefault, small = spacePaddingInlineIconStartSmall), + top = getSpace(size = size, default = spacePaddingBlockDefault, small = spacePaddingBlockSmall), + end = getSpace(size = size, default = spacePaddingInlineEndIconStartDefault, small = spacePaddingInlineEndIconStartSmall), + bottom = getSpace(size = size, default = spacePaddingBlockDefault, small = spacePaddingBlockSmall) ) icon != null && label == null -> PaddingValues( - all = spaceInsetIconOnly.value, + all = getSpace(size = size, default = spaceInsetIconOnlyDefault, small = spaceInsetIconOnlySmall), ) else -> PaddingValues( - horizontal = spacePaddingInlineIconNone.value, - vertical = spacePaddingBlock.value + horizontal = getSpace(size = size, default = spacePaddingInlineIconNoneDefault, small = spacePaddingInlineIconNoneSmall), + vertical = getSpace(size = size, default = spacePaddingBlockDefault, small = spacePaddingBlockSmall) ) } is OudsButtonComponent.NavigationButton -> when { @@ -691,35 +730,38 @@ private fun contentPadding(component: OudsButtonComponent, icon: OudsButtonIcon? val endPadding: Dp when (component.chevron) { OudsNavigationButtonChevron.Next -> { - startPadding = spacePaddingInlineStartIconEnd.value - endPadding = spacePaddingInlineChevronEnd.value + startPadding = getSpace(size = size, default = spacePaddingInlineStartIconEndDefault, small = spacePaddingInlineStartIconEndSmall) + endPadding = getSpace(size = size, default = spacePaddingInlineChevronEndDefault, small = spacePaddingInlineChevronEndSmall) } OudsNavigationButtonChevron.Previous -> { - startPadding = spacePaddingInlineChevronStart.value - endPadding = spacePaddingInlineEndIconStart.value + startPadding = getSpace(size = size, default = spacePaddingInlineChevronStartDefault, small = spacePaddingInlineChevronStartSmall) + endPadding = getSpace(size = size, default = spacePaddingInlineEndIconStartDefault, small = spacePaddingInlineEndIconStartSmall) } } PaddingValues( start = startPadding, - top = spacePaddingBlock.value, + top = getSpace(size = size, default = spacePaddingBlockDefault, small = spacePaddingBlockSmall), end = endPadding, - bottom = spacePaddingBlock.value + bottom = getSpace(size = size, default = spacePaddingBlockDefault, small = spacePaddingBlockSmall) ) } - else -> PaddingValues(all = spaceInsetIconOnly.value) + else -> PaddingValues(all = getSpace(size = size, default = spaceInsetIconOnlyDefault, small = spaceInsetIconOnlySmall)) } } } } @Composable -private fun ProgressIndicator(appearance: OudsButtonAppearance, progress: Float?, scale: Float) { - val modifier = Modifier - .size(OudsTheme.componentsTokens.button.sizeLoader.value * scale) - .semantics { hideFromAccessibility() } - val color = contentColor(appearance = appearance, state = OudsButtonState.Loading) +private fun getSize(size: OudsButtonSize, default: T, small: T): Dp where T : OudsSizeKeyToken = getKeyToken(size, default, small).value + +@Composable +private fun getSpace(size: OudsButtonSize, default: T, small: T): Dp where T : OudsSpaceKeyToken = getKeyToken(size, default, small).value - InternalOudsCircularProgressIndicator(modifier = modifier, color = color, progress = progress, scale = scale) +private fun getKeyToken(size: OudsButtonSize, default: T, small: T): T where T : OudsKeyToken { + return when (size) { + OudsButtonSize.Default -> default + OudsButtonSize.Small -> small + } } /** @@ -858,7 +900,7 @@ internal sealed interface OudsButtonComponent { object Button : OudsButtonComponent { override val columnGap @Composable - get() = OudsTheme.componentsTokens.button.spaceColumnGapIcon.value + get() = OudsTheme.componentsTokens.button.spaceColumnGapIconDefault.value } /** @@ -869,10 +911,15 @@ internal sealed interface OudsButtonComponent { class NavigationButton(val chevron: OudsNavigationButtonChevron) : OudsButtonComponent { override val columnGap: Dp @Composable - get() = OudsTheme.componentsTokens.button.spaceColumnGapChevron.value + get() = OudsTheme.componentsTokens.button.spaceColumnGapChevronDefault.value } } +internal enum class OudsButtonSize { + + Default, Small +} + @OudsPreviewLightDark @Composable @Suppress("PreviewShouldNotBeCalledRecursively") @@ -891,12 +938,25 @@ internal fun PreviewOudsButton( val icon = if (hasIcon) OudsButtonIcon(Icons.Filled.FavoriteBorder, "") else null val content: @Composable () -> Unit = { PreviewEnumEntries(maxEnumEntriesInEachRow = 2) { - OudsButton( - nullableIcon = icon, - nullableLabel = label, - onClick = {}, - appearance = appearance - ) + when { + icon != null && label != null -> OudsButton( + icon = icon, + label = label, + onClick = {}, + appearance = appearance + ) + icon != null -> OudsButton( + icon = icon, + onClick = {}, + appearance = appearance + ) + label != null -> OudsButton( + label = label, + onClick = {}, + appearance = appearance + ) + else -> {} + } } } if (onColoredBox) { @@ -920,8 +980,8 @@ internal fun PreviewOudsButtonWithRoundedCorners(theme: OudsThemeContract) = val appearance = OudsButtonAppearance.Default PreviewEnumEntries(maxEnumEntriesInEachRow = 2) { OudsButton( - nullableIcon = OudsButtonIcon(Icons.Filled.FavoriteBorder, ""), - nullableLabel = appearance.name, + icon = OudsButtonIcon(Icons.Filled.FavoriteBorder, ""), + label = appearance.name, onClick = {}, appearance = appearance ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt b/core/src/main/java/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt index 710b5d1ef3..d9095b9837 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt @@ -13,27 +13,22 @@ package com.orange.ouds.core.component import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.foundation.layout.BoxWithConstraints import androidx.compose.foundation.layout.size import androidx.compose.material3.CircularProgressIndicator import androidx.compose.material3.ExperimentalMaterial3Api import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.StrokeCap -import androidx.compose.ui.layout.onSizeChanged import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.platform.LocalInspectionMode import androidx.compose.ui.semantics.hideFromAccessibility import androidx.compose.ui.semantics.semantics import androidx.compose.ui.tooling.preview.PreviewParameter -import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp import com.orange.ouds.core.extensions.value +import com.orange.ouds.core.theme.LocalColorMode import com.orange.ouds.core.theme.LocalThemeSettings import com.orange.ouds.core.theme.OudsTheme import com.orange.ouds.core.theme.value @@ -128,71 +123,57 @@ fun OudsCircularProgressIndicator( @OptIn(ExperimentalMaterial3Api::class) @Composable -private fun OudsCircularProgressIndicator( +internal fun OudsCircularProgressIndicator( nullableProgress: (() -> Float)?, - status: OudsProgressIndicatorStatus, - track: Boolean, - modifier: Modifier = Modifier + modifier: Modifier = Modifier, + status: OudsProgressIndicatorStatus = OudsProgressIndicatorDefaults.Status, + track: Boolean = true, + color: Color? = null ) { - val scale = LocalConfiguration.current.fontScale - val density = LocalDensity.current - with(OudsTheme.componentsTokens.progressIndicator) { + val scale = LocalConfiguration.current.fontScale val defaultSize = OudsCircularProgressIndicatorSize * scale - var strokeWidth by remember { mutableStateOf(computeStrokeWidth(defaultSize)) } - var gapSize by remember { mutableStateOf(computeGapSize(defaultSize)) } - - val progressIndicatorModifier = modifier - .size(defaultSize) - .onSizeChanged { measuredSize -> - with(density) { - val currentSize = measuredSize.width.toDp() - strokeWidth = computeStrokeWidth(currentSize) - gapSize = computeGapSize(currentSize) - } + BoxWithConstraints(modifier = modifier.size(defaultSize)) { + // The stroke width is equal to 25% of the radius, 12.5% of the diameter + val strokeWidth = maxWidth * 0.125f + // The gap corresponds to a 10-degree angle converted into a distance on the circle + val gapSize = (10f / 360f * PI.toFloat() * maxWidth.value).dp + val borderRadius = if (LocalThemeSettings.current.roundedCornerProgressIndicators == true) borderRadiusRounded else borderRadiusDefault + val strokeCap = if (borderRadius.value > 0.dp) StrokeCap.Round else StrokeCap.Butt + val monochrome = LocalColorMode.current?.monochrome == true + val monochromeTokens = OudsTheme.componentsTokens.progressIndicatorMonochrome + val circularProgressIndicatorColor = color.orElse { if (monochrome) monochromeTokens.colorContentIndicator.value else status.color() } + val trackColor = when { + track -> if (monochrome) monochromeTokens.colorContentTrack.value else colorContentTrack.value + else -> Color.Transparent } - val color = status.color() - val borderRadius = if (LocalThemeSettings.current.roundedCornerProgressIndicators == true) borderRadiusRounded else borderRadiusDefault - val strokeCap = if (borderRadius.value > 0.dp) StrokeCap.Round else StrokeCap.Butt - val trackColor = if (track) colorContentTrack.value else Color.Transparent + val progressIndicatorModifier = Modifier.size(maxWidth, maxHeight) - nullableProgress?.let { - CircularProgressIndicator( - progress = nullableProgress, - modifier = progressIndicatorModifier, - color = color, - strokeWidth = strokeWidth, - trackColor = trackColor, - strokeCap = strokeCap, - gapSize = gapSize - ) - }.orElse { - CircularProgressIndicator( - modifier = progressIndicatorModifier, - color = color, - strokeWidth = strokeWidth, - trackColor = trackColor, - strokeCap = strokeCap, - gapSize = gapSize - ) + if (nullableProgress != null || LocalInspectionMode.current) { + CircularProgressIndicator( + progress = nullableProgress.orElse { { 0.75f } }, + modifier = progressIndicatorModifier, + color = circularProgressIndicatorColor, + strokeWidth = strokeWidth, + trackColor = trackColor, + strokeCap = strokeCap, + gapSize = gapSize + ) + } else { + CircularProgressIndicator( + modifier = progressIndicatorModifier, + color = circularProgressIndicatorColor, + strokeWidth = strokeWidth, + trackColor = trackColor, + strokeCap = strokeCap, + gapSize = gapSize + ) + } } } } -/** - * Calculates the stroke width based on the component size. - * The stroke width is equal to 25% of the radius, 12.5% of the diameter. - */ -private fun computeStrokeWidth(componentSize: Dp): Dp = componentSize * 0.125f - -/** - * Calculates the gap size based on the component size. - * The gap corresponds to a 10-degree angle converted into a distance on the circle. - */ -private fun computeGapSize(componentSize: Dp): Dp = - (10f / 360f * PI.toFloat() * componentSize.value).dp - /** * A temporary circular progress indicator component used internally by several public components. */ @@ -204,7 +185,7 @@ internal fun InternalOudsCircularProgressIndicator( scale: Float = 1.0f ) { val modifier = modifier - .size(OudsTheme.componentsTokens.button.sizeLoader.value * scale) + .size(@Suppress("DEPRECATION") OudsTheme.componentsTokens.button.sizeLoader.value * scale) .semantics { hideFromAccessibility() } val strokeWidth = 3.dp * scale val trackColor = Color.Transparent @@ -243,18 +224,46 @@ internal fun PreviewOudsCircularProgressIndicator( ) { OudsPreview(theme = theme, darkThemeEnabled = darkThemeEnabled) { with(parameter) { - OudsCircularProgressIndicator( - progress = { 0.75f }, - status = status, - track = track - ) + val circularProgressIndicatorPreview: @Composable () -> Unit = { + OudsCircularProgressIndicator( + progress = { 0.75f }, + status = status, + track = track + ) + } + + if (onColoredBackground) { + OudsColoredBox(color = OudsColoredBoxColor.BrandPrimary) { + circularProgressIndicatorPreview() + } + } else { + circularProgressIndicatorPreview() + } } } } +@Suppress("PreviewShouldNotBeCalledRecursively") +@OudsPreview +@Composable +private fun PreviewOudsCircularProgressIndicatorSized(@PreviewParameter(OudsCircularProgressIndicatorSizedPreviewParameterProvider::class) size: Float) { + PreviewOudsCircularProgressIndicatorSized(theme = getPreviewTheme(), size = size) +} + +@Composable +internal fun PreviewOudsCircularProgressIndicatorSized(theme: OudsThemeContract, size: Float) { + OudsPreview(theme = theme) { + OudsCircularProgressIndicator( + modifier = Modifier.size(size.dp), + progress = { 0.75f } + ) + } +} + internal data class OudsCircularProgressIndicatorPreviewParameter( val status: OudsProgressIndicatorStatus = OudsProgressIndicatorDefaults.Status, - val track: Boolean = true + val track: Boolean = true, + val onColoredBackground: Boolean = false ) internal class OudsCircularProgressIndicatorPreviewParameterProvider : @@ -264,5 +273,13 @@ private val previewParameterValues: List( + OudsCircularProgressIndicatorSize.value / 2f, + OudsCircularProgressIndicatorSize.value, + OudsCircularProgressIndicatorSize.value * 2f + ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsFloatingActionButton.kt b/core/src/main/java/com/orange/ouds/core/component/OudsFloatingActionButton.kt index ba37d1450d..a30be66ecf 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsFloatingActionButton.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsFloatingActionButton.kt @@ -385,7 +385,7 @@ private fun OudsFloatingActionButton( @Composable private fun Icon(icon: OudsFloatingActionButtonIcon, label: String? = null, large: Boolean = false) { - val iconSize = if (large) OudsTheme.sizes.icon.withLabel.large.sizeLarge else OudsTheme.componentsTokens.button.sizeIconOnly.value + val iconSize = if (large) OudsTheme.sizes.icon.withLabel.large.sizeLarge else OudsTheme.componentsTokens.button.sizeIconOnlyDefault.value val iconScale = LocalConfiguration.current.fontScale icon.Content( modifier = Modifier diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsNavigationButton.kt b/core/src/main/java/com/orange/ouds/core/component/OudsNavigationButton.kt index 5d5455f60e..e16b3d4c29 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsNavigationButton.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsNavigationButton.kt @@ -23,6 +23,7 @@ import com.orange.ouds.core.utilities.OudsPreview import com.orange.ouds.core.utilities.OudsPreviewLightDark import com.orange.ouds.core.utilities.PreviewEnumEntries import com.orange.ouds.core.utilities.getPreviewTheme +import com.orange.ouds.core.utilities.mapSettings import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract @@ -209,6 +210,24 @@ internal fun PreviewOudsNavigationButton( } } +@OudsPreview +@Composable +@Suppress("PreviewShouldNotBeCalledRecursively") +private fun PreviewOudsNavigationButtonWithRoundedCorners() = PreviewOudsNavigationButtonWithRoundedCorners(theme = getPreviewTheme()) + +@Composable +internal fun PreviewOudsNavigationButtonWithRoundedCorners(theme: OudsThemeContract) = + OudsPreview(theme = theme.mapSettings { it.copy(roundedCornerButtons = true) }) { + val appearance = OudsNavigationButtonAppearance.Default + PreviewEnumEntries(maxEnumEntriesInEachRow = 2) { + OudsNavigationButton( + label = appearance.name, + onClick = {}, + appearance = appearance + ) + } + } + @OudsPreview @Composable @Suppress("PreviewShouldNotBeCalledRecursively") diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsSmallButton.kt b/core/src/main/java/com/orange/ouds/core/component/OudsSmallButton.kt new file mode 100644 index 0000000000..73521b0a0b --- /dev/null +++ b/core/src/main/java/com/orange/ouds/core/component/OudsSmallButton.kt @@ -0,0 +1,323 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.core.component + +import androidx.compose.foundation.interaction.Interaction +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material.icons.Icons +import androidx.compose.material.icons.filled.FavoriteBorder +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.PreviewParameter +import com.orange.ouds.core.utilities.OudsPreview +import com.orange.ouds.core.utilities.OudsPreviewLightDark +import com.orange.ouds.core.utilities.PreviewEnumEntries +import com.orange.ouds.core.utilities.getPreviewTheme +import com.orange.ouds.core.utilities.mapSettings +import com.orange.ouds.core.utilities.rememberRainbowHeartPainter +import com.orange.ouds.theme.OudsThemeContract +import com.orange.ouds.theme.OudsThemeSettings +import com.orange.ouds.theme.tokens.components.OudsButtonMonoTokens + +/** + * Button is a UI element that triggers an action or event, and is used to initiate tasks or confirming an action. + * Button appears in different layouts, styles and states to indicate hierarchy or emphasis. + * + * This version of the button uses the *text only* layout, which is the most common layout. + * Other layouts are available for this component: *text + icon* and *icon only*. + * + * This size can be particularly useful in an information-dense interface or in the construction of a template or component requiring the use of small elements (in an "List item" component, for example). + * The default size is available via [OudsButton]. + * + * Note that if it is placed in an [OudsColoredBox], its monochrome variant is automatically displayed. + * The tokens associated with these specific colors can be customized by overriding [OudsButtonMonoTokens]. + * + * Rounded corners can be enabled or disabled using the [OudsThemeSettings.roundedCornerButtons] property in the settings of the theme provided + * when calling the [com.orange.ouds.core.theme.OudsTheme] method. + * + * > Design guidelines: [unified-design-system.orange.com](https://r.orange.fr/r/S-ouds-doc-button) + * + * > Design name: Button + * + * > Design version: 3.3.0 + * + * @param label Label displayed in the button describing the button action. Use action verbs or phrases to tell the user what will happen next. + * @param onClick Callback invoked when the button is clicked. + * @param modifier [Modifier] applied to the button. + * @param enabled Controls the enabled state of the button when there is no [loader]. + * When `false`, this button will not be clickable. + * Has no effect if [loader] is provided. + * @param loader An optional loading progress indicator displayed in the button to indicate an ongoing operation. + * @param appearance Appearance of the button among [OudsButtonAppearance] values. + * A button with [OudsButtonAppearance.Negative] is not allowed as a direct or indirect child of an [OudsColoredBox] and will throw an [IllegalStateException]. + * @param interactionSource An optional hoisted [MutableInteractionSource] for observing and emitting [Interaction]s for this button. Note that if `null` + * is provided, interactions will still happen internally. + * + * @sample com.orange.ouds.core.component.samples.OudsSmallButtonTextOnlySample + * + * @sample com.orange.ouds.core.component.samples.OudsSmallButtonTextOnlyOnColoredBackgroundSample + */ +@Composable +fun OudsSmallButton( + label: String, + onClick: () -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + loader: OudsButtonLoader? = null, + appearance: OudsButtonAppearance = OudsButtonDefaults.Appearance, + interactionSource: MutableInteractionSource? = null +) { + OudsButton( + nullableIcon = null, + nullableLabel = label, + onClick = onClick, + modifier = modifier, + enabled = enabled, + loader = loader, + appearance = appearance, + size = OudsButtonSize.Small, + interactionSource = interactionSource + ) +} + +/** + * Button is a UI element that triggers an action or event, and is used to initiate tasks or confirming an action. + * Button appears in different layouts, styles and states to indicate hierarchy or emphasis. + * + * This version of the button uses the *icon only* layout, which is typically used in business or back-office interfaces. It is rarely used alone (usually part of a group of elements). + * Other layouts are available for this component: *text only* and *text + icon*. + * + * This size can be particularly useful in an information-dense interface or in the construction of a template or component requiring the use of small elements (in an "List item" component, for example). + * The default size is available via [OudsButton]. + * + * Note that if it is placed in an [OudsColoredBox], its monochrome variant is automatically displayed. + * The tokens associated with these specific colors can be customized by overriding [OudsButtonMonoTokens]. + * + * Rounded corners can be enabled or disabled using the [OudsThemeSettings.roundedCornerButtons] property in the settings of the theme provided + * when calling the [com.orange.ouds.core.theme.OudsTheme] method. + * + * > Design guidelines: [unified-design-system.orange.com](https://r.orange.fr/r/S-ouds-doc-button) + * + * > Design name: Button + * + * > Design version: 3.3.0 + * + * @param icon Icon displayed in the button. Use an icon to add additional affordance where the icon has a clear and well-established meaning. + * @param onClick Callback invoked when the button is clicked. + * @param modifier [Modifier] applied to the button. + * @param enabled Controls the enabled state of the button when there is no [loader]. + * When `false`, this button will not be clickable. + * Has no effect if [loader] is provided. + * @param loader An optional loading progress indicator displayed in the button to indicate an ongoing operation. + * @param appearance Appearance of the button among [OudsButtonAppearance] values. + * A button with [OudsButtonAppearance.Negative] is not allowed as a direct or indirect child of an [OudsColoredBox] and will throw an [IllegalStateException]. + * @param interactionSource An optional hoisted [MutableInteractionSource] for observing and emitting [Interaction]s for this button. Note that if `null` + * is provided, interactions will still happen internally. + * + * @sample com.orange.ouds.core.component.samples.OudsSmallButtonIconOnlySample + * + * @sample com.orange.ouds.core.component.samples.OudsSmallButtonIconOnlyOnColoredBackgroundSample + * + * @sample com.orange.ouds.core.component.samples.OudsSmallButtonIconOnlyWithUntintedIconSample + */ +@Composable +fun OudsSmallButton( + icon: OudsButtonIcon, + onClick: () -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + loader: OudsButtonLoader? = null, + appearance: OudsButtonAppearance = OudsButtonDefaults.Appearance, + interactionSource: MutableInteractionSource? = null +) { + OudsButton( + nullableIcon = icon, + nullableLabel = null, + onClick = onClick, + modifier = modifier, + enabled = enabled, + loader = loader, + appearance = appearance, + size = OudsButtonSize.Small, + interactionSource = interactionSource + ) +} + +/** + * Button is a UI element that triggers an action or event, and is used to initiate tasks or confirming an action. + * Button appears in different layouts, styles and states to indicate hierarchy or emphasis. + * + * This version of the button uses the *text + icon* layout, which should remain specific to clearly identified contexts (e.g., the use of an icon with a + * "Play" button is standard in the context of TV or video streaming). + * Other layouts are available for this component: *text only* and *icon only*. + * + * This size can be particularly useful in an information-dense interface or in the construction of a template or component requiring the use of small elements (in an "List item" component, for example). + * The default size is available via [OudsButton]. + * + * Note that if it is placed in an [OudsColoredBox], its monochrome variant is automatically displayed. + * The tokens associated with these specific colors can be customized by overriding [OudsButtonMonoTokens]. + * + * Rounded corners can be enabled or disabled using the [OudsThemeSettings.roundedCornerButtons] property in the settings of the theme provided + * when calling the [com.orange.ouds.core.theme.OudsTheme] method. + * + * > Design guidelines: [unified-design-system.orange.com](https://r.orange.fr/r/S-ouds-doc-button) + * + * > Design name: Button + * + * > Design version: 3.3.0 + * + * @param icon Icon displayed in the button. Use an icon to add additional affordance where the icon has a clear and well-established meaning. + * @param label Label displayed in the button describing the button action. Use action verbs or phrases to tell the user what will happen next. + * @param onClick Callback invoked when the button is clicked. + * @param modifier [Modifier] applied to the button. + * @param enabled Controls the enabled state of the button when there is no [loader]. + * When `false`, this button will not be clickable. + * Has no effect if [loader] is provided. + * @param loader An optional loading progress indicator displayed in the button to indicate an ongoing operation. + * @param appearance Appearance of the button among [OudsButtonAppearance] values. + * A button with [OudsButtonAppearance.Negative] is not allowed as a direct or indirect child of an [OudsColoredBox] and will throw an [IllegalStateException]. + * @param interactionSource An optional hoisted [MutableInteractionSource] for observing and emitting [Interaction]s for this button. Note that if `null` + * is provided, interactions will still happen internally. + * + * @sample com.orange.ouds.core.component.samples.OudsSmallButtonTextAndIconSample + * + * @sample com.orange.ouds.core.component.samples.OudsSmallButtonTextAndIconOnColoredBackgroundSample + * + * @sample com.orange.ouds.core.component.samples.OudsSmallButtonTextAndIconWithUntintedIconSample + */ +@Composable +fun OudsSmallButton( + icon: OudsButtonIcon, + label: String, + onClick: () -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + loader: OudsButtonLoader? = null, + appearance: OudsButtonAppearance = OudsButtonDefaults.Appearance, + interactionSource: MutableInteractionSource? = null +) { + OudsButton( + nullableIcon = icon, + nullableLabel = label, + onClick = onClick, + modifier = modifier, + enabled = enabled, + loader = loader, + appearance = appearance, + size = OudsButtonSize.Small, + interactionSource = interactionSource + ) +} + +@OudsPreviewLightDark +@Composable +@Suppress("PreviewShouldNotBeCalledRecursively") +private fun PreviewOudsSmallButton(@PreviewParameter(OudsButtonPreviewParameterProvider::class) parameter: OudsButtonPreviewParameter) { + PreviewOudsSmallButton(theme = getPreviewTheme(), darkThemeEnabled = isSystemInDarkTheme(), parameter = parameter) +} + +@Composable +internal fun PreviewOudsSmallButton( + theme: OudsThemeContract, + darkThemeEnabled: Boolean, + parameter: OudsButtonPreviewParameter +) = OudsPreview(theme = theme, darkThemeEnabled = darkThemeEnabled) { + with(parameter) { + val label = if (hasLabel) appearance.name else null + val icon = if (hasIcon) OudsButtonIcon(Icons.Filled.FavoriteBorder, "") else null + val content: @Composable () -> Unit = { + PreviewEnumEntries(maxEnumEntriesInEachRow = 2) { + when { + icon != null && label != null -> OudsSmallButton( + icon = icon, + label = label, + onClick = {}, + appearance = appearance + ) + icon != null -> OudsSmallButton( + icon = icon, + onClick = {}, + appearance = appearance + ) + label != null -> OudsSmallButton( + label = label, + onClick = {}, + appearance = appearance + ) + else -> {} + } + } + } + if (onColoredBox) { + OudsColoredBox(color = OudsColoredBoxColor.BrandPrimary) { + content() + } + } else { + content() + } + } +} + +@OudsPreview +@Composable +@Suppress("PreviewShouldNotBeCalledRecursively") +private fun PreviewOudsSmallButtonWithRoundedCorners() = PreviewOudsSmallButtonWithRoundedCorners(theme = getPreviewTheme()) + +@Composable +internal fun PreviewOudsSmallButtonWithRoundedCorners(theme: OudsThemeContract) = + OudsPreview(theme = theme.mapSettings { it.copy(roundedCornerButtons = true) }) { + val appearance = OudsButtonAppearance.Default + PreviewEnumEntries(maxEnumEntriesInEachRow = 2) { + OudsSmallButton( + icon = OudsButtonIcon(Icons.Filled.FavoriteBorder, ""), + label = appearance.name, + onClick = {}, + appearance = appearance + ) + } + } + +@OudsPreview +@Composable +@Suppress("PreviewShouldNotBeCalledRecursively") +private fun PreviewOudsSmallButtonOnTwoLines() = PreviewOudsSmallButtonOnTwoLines(getPreviewTheme()) + +@Composable +internal fun PreviewOudsSmallButtonOnTwoLines(theme: OudsThemeContract) = OudsPreview(theme = theme) { + OudsSmallButton( + icon = OudsButtonIcon(Icons.Filled.FavoriteBorder, ""), + label = "Button\non two lines", + onClick = {}, + ) +} + +@OudsPreview +@Composable +@Suppress("PreviewShouldNotBeCalledRecursively") +private fun PreviewOudsSmallButtonWithUntintedIcon() = PreviewOudsSmallButtonWithUntintedIcon(getPreviewTheme()) + +@Composable +internal fun PreviewOudsSmallButtonWithUntintedIcon(theme: OudsThemeContract) = OudsPreview(theme = theme) { + PreviewEnumEntries(maxEnumEntriesInEachRow = 2) { + OudsSmallButton( + icon = OudsButtonIcon( + painter = rememberRainbowHeartPainter(), + contentDescription = "", + tinted = false + ), + label = "Label", + onClick = {}, + ) + } +} diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsTextArea.kt b/core/src/main/java/com/orange/ouds/core/component/OudsTextArea.kt index 69020bf8a9..0863c37e20 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsTextArea.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsTextArea.kt @@ -1315,9 +1315,9 @@ internal fun OudsTextAreaDecorator( // Trailing elements (error icon or loader) Box( modifier = Modifier - .widthIn(min = OudsTheme.componentsTokens.button.sizeMinWidth.value) + .widthIn(min = OudsTheme.componentsTokens.button.sizeMinWidthDefault.value) .padding( - horizontal = OudsTheme.componentsTokens.button.spaceInsetIconOnly.value, + horizontal = OudsTheme.componentsTokens.button.spaceInsetIconOnlyDefault.value, vertical = if (value.isEmpty() && state != OudsTextInputState.Focused) { textAreaTokens.spacePaddingBlockEmptyTrailingContainer.value } else { @@ -1331,7 +1331,7 @@ internal fun OudsTextAreaDecorator( // Error icon if (hasError) { Icon( - modifier = Modifier.size(buttonTokens.sizeIconOnly.value * iconScale), + modifier = Modifier.size(buttonTokens.sizeIconOnlyDefault.value * iconScale), painter = painterResource(id = OudsTheme.drawableResources.component.alert.importantFill), contentDescription = if (error.message.isBlank()) stringResource(R.string.core_common_error_a11y) else null, tint = errorIconColor(state = state) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsTextInput.kt b/core/src/main/java/com/orange/ouds/core/component/OudsTextInput.kt index b6a25eaa5e..ad85f37682 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsTextInput.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsTextInput.kt @@ -1172,11 +1172,11 @@ internal fun OudsTextInputDecorator( // Error icon if (hasError) { Box( - modifier = Modifier.padding(all = if (trailingIconButton != null) 0.dp else buttonTokens.spaceInsetIconOnly.value), + modifier = Modifier.padding(all = if (trailingIconButton != null) 0.dp else buttonTokens.spaceInsetIconOnlyDefault.value), contentAlignment = Alignment.Center ) { Icon( - modifier = Modifier.size(buttonTokens.sizeIconOnly.value * iconScale), + modifier = Modifier.size(buttonTokens.sizeIconOnlyDefault.value * iconScale), painter = painterResource(id = OudsTheme.drawableResources.component.alert.importantFill), contentDescription = if (error.message.isBlank()) stringResource(R.string.core_common_error_a11y) else null, tint = errorIconColor(state = state) @@ -1188,9 +1188,9 @@ internal fun OudsTextInputDecorator( if (state == OudsTextInputState.Loading) { Box( modifier = Modifier - .widthIn(min = buttonTokens.sizeMinWidth.value) - .heightIn(min = buttonTokens.sizeMinHeight.value, max = buttonTokens.sizeMaxHeightIconOnly.value * iconScale) - .padding(all = buttonTokens.spaceInsetIconOnly.value), + .widthIn(min = buttonTokens.sizeMinWidthDefault.value) + .heightIn(min = buttonTokens.sizeMinHeightDefault.value, max = buttonTokens.sizeMaxWidthHeightIconOnlyDefault.value * iconScale) + .padding(all = buttonTokens.spaceInsetIconOnlyDefault.value), contentAlignment = Alignment.Center ) { InternalOudsCircularProgressIndicator( diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsSmallButtonSamples.kt b/core/src/main/java/com/orange/ouds/core/component/samples/OudsSmallButtonSamples.kt new file mode 100644 index 0000000000..9310363ef4 --- /dev/null +++ b/core/src/main/java/com/orange/ouds/core/component/samples/OudsSmallButtonSamples.kt @@ -0,0 +1,168 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.core.component.samples + +import androidx.compose.material.icons.Icons +import androidx.compose.material.icons.filled.FavoriteBorder +import androidx.compose.runtime.Composable +import androidx.compose.ui.tooling.preview.PreviewLightDark +import com.orange.ouds.core.component.OudsButtonIcon +import com.orange.ouds.core.component.OudsColoredBox +import com.orange.ouds.core.component.OudsColoredBoxColor +import com.orange.ouds.core.component.OudsSmallButton +import com.orange.ouds.core.utilities.OudsPreview +import com.orange.ouds.core.utilities.rememberRainbowHeartPainter + +@Composable +internal fun OudsSmallButtonTextOnlySample() { + OudsSmallButton( + label = "Label", + onClick = { /* Do something! */ } + ) +} + +@Composable +internal fun OudsSmallButtonTextOnlyOnColoredBackgroundSample() { + OudsColoredBox(color = OudsColoredBoxColor.StatusInfoEmphasized) { + // The colors of this button are automatically adjusted to maximize the contrast with the colored background. + OudsSmallButton( + label = "Label", + onClick = { /* Do something! */ } + ) + } +} + +@Composable +internal fun OudsSmallButtonIconOnlySample() { + OudsSmallButton( + icon = OudsButtonIcon( + imageVector = Icons.Filled.FavoriteBorder, + contentDescription = "Content description" + ), + onClick = { /* Do something! */ } + ) +} + +@Composable +internal fun OudsSmallButtonIconOnlyOnColoredBackgroundSample() { + OudsColoredBox(color = OudsColoredBoxColor.StatusInfoEmphasized) { + // The colors of this button are automatically adjusted to maximize the contrast with the colored background. + OudsSmallButton( + icon = OudsButtonIcon( + imageVector = Icons.Filled.FavoriteBorder, + contentDescription = "Content description" + ), + onClick = { /* Do something! */ } + ) + } +} + +@Composable +internal fun OudsSmallButtonTextAndIconSample() { + OudsSmallButton( + icon = OudsButtonIcon( + imageVector = Icons.Filled.FavoriteBorder, + contentDescription = "" + ), + label = "Label", + onClick = { /* Do something! */ } + ) +} + +@Composable +internal fun OudsSmallButtonTextAndIconOnColoredBackgroundSample() { + OudsColoredBox(color = OudsColoredBoxColor.StatusInfoEmphasized) { + // The colors of this button are automatically adjusted to maximize the contrast with the colored background. + OudsSmallButton( + icon = OudsButtonIcon( + imageVector = Icons.Filled.FavoriteBorder, + contentDescription = "" + ), + label = "Label", + onClick = { /* Do something! */ } + ) + } +} + +@Composable +internal fun OudsSmallButtonIconOnlyWithUntintedIconSample() { + OudsSmallButton( + icon = OudsButtonIcon( + painter = rememberRainbowHeartPainter(), + contentDescription = "Content description", + tinted = false + ), + onClick = { /* Do something! */ } + ) +} + +@Composable +internal fun OudsSmallButtonTextAndIconWithUntintedIconSample() { + OudsSmallButton( + icon = OudsButtonIcon( + painter = rememberRainbowHeartPainter(), + contentDescription = "", + tinted = false + ), + label = "Label", + onClick = { /* Do something! */ } + ) +} + +@PreviewLightDark +@Composable +private fun PreviewOudsSmallButtonTextOnlySample() = OudsPreview { + OudsSmallButtonTextOnlySample() +} + +@PreviewLightDark +@Composable +private fun PreviewOudsSmallButtonTextOnlyOnColoredBackgroundSample() = OudsPreview { + OudsSmallButtonTextOnlyOnColoredBackgroundSample() +} + +@PreviewLightDark +@Composable +private fun PreviewOudsSmallButtonIconOnlySample() = OudsPreview { + OudsSmallButtonIconOnlySample() +} + +@PreviewLightDark +@Composable +private fun PreviewOudsSmallButtonIconOnlyOnColoredBackgroundSample() = OudsPreview { + OudsSmallButtonIconOnlyOnColoredBackgroundSample() +} + +@PreviewLightDark +@Composable +private fun PreviewOudsSmallButtonTextAndIconSample() = OudsPreview { + OudsSmallButtonTextAndIconSample() +} + +@PreviewLightDark +@Composable +private fun PreviewOudsSmallButtonTextAndIconOnColoredBackgroundSample() = OudsPreview { + OudsSmallButtonTextAndIconOnColoredBackgroundSample() +} + +@PreviewLightDark +@Composable +private fun PreviewOudsSmallButtonIconOnlyWithUntintedIconSample() = OudsPreview { + OudsSmallButtonIconOnlyWithUntintedIconSample() +} + +@PreviewLightDark +@Composable +private fun PreviewOudsSmallButtonTextAndIconWithUntintedIconSample() = OudsPreview { + OudsSmallButtonTextAndIconWithUntintedIconSample() +} diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsComponents.kt b/core/src/main/java/com/orange/ouds/core/theme/OudsComponents.kt index ef4789bcb2..4800c5c36a 100644 --- a/core/src/main/java/com/orange/ouds/core/theme/OudsComponents.kt +++ b/core/src/main/java/com/orange/ouds/core/theme/OudsComponents.kt @@ -16,6 +16,7 @@ import androidx.compose.runtime.Composable import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp import com.orange.ouds.core.extensions.value +import com.orange.ouds.foundation.ExperimentalOudsApi import com.orange.ouds.foundation.RestrictedOudsApi import com.orange.ouds.theme.tokens.components.OudsAlertTokens import com.orange.ouds.theme.tokens.components.OudsBadgeTokens @@ -33,6 +34,8 @@ import com.orange.ouds.theme.tokens.components.OudsInputTagTokens import com.orange.ouds.theme.tokens.components.OudsLinkMonoTokens import com.orange.ouds.theme.tokens.components.OudsLinkTokens import com.orange.ouds.theme.tokens.components.OudsPinCodeInputTokens +import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorMonoTokens +import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorTokens import com.orange.ouds.theme.tokens.components.OudsRadioButtonTokens import com.orange.ouds.theme.tokens.components.OudsSwitchTokens import com.orange.ouds.theme.tokens.components.OudsTagTokens @@ -57,6 +60,8 @@ data class OudsComponents internal constructor( val link: Link, val linkMonochrome: LinkMonochrome, val pinCodeInput: PinCodeInput, + val progressIndicator: ProgressIndicator, + val progressIndicatorMonochrome: ProgressIndicatorMonochrome, val radioButton: RadioButton, val switch: Switch, val tag: Tag, @@ -337,6 +342,7 @@ data class OudsComponents internal constructor( @ConsistentCopyVisibility data class Radius internal constructor( + @ExperimentalOudsApi val aiIconOnly: Dp, val default: Dp, val rounded: Dp, val social: Dp @@ -344,6 +350,8 @@ data class OudsComponents internal constructor( @ConsistentCopyVisibility data class Width internal constructor( + @ExperimentalOudsApi val ai: Dp, + @ExperimentalOudsApi val aiInteraction: Dp, val default: Dp, val defaultInteraction: Dp, val defaultInteractionMonochrome: Dp @@ -361,7 +369,8 @@ data class OudsComponents internal constructor( data class Background internal constructor( val brand: Brand, val default: Default, - val minimal: Minimal + val minimal: Minimal, + val ai: Ai ) { @ConsistentCopyVisibility @@ -389,11 +398,23 @@ data class OudsComponents internal constructor( val pressed: androidx.compose.ui.graphics.Color, val focus: androidx.compose.ui.graphics.Color ) + + @ConsistentCopyVisibility + @ExperimentalOudsApi + data class Ai internal constructor( + val enabled: androidx.compose.ui.graphics.Color, + val hover: androidx.compose.ui.graphics.Color, + val pressed: androidx.compose.ui.graphics.Color, + val loading: androidx.compose.ui.graphics.Color, + val disabled: androidx.compose.ui.graphics.Color, + val focus: androidx.compose.ui.graphics.Color + ) } @ConsistentCopyVisibility data class Border internal constructor( - val default: Default + val default: Default, + val ai: Ai ) { @ConsistentCopyVisibility @@ -405,13 +426,25 @@ data class OudsComponents internal constructor( val disabled: androidx.compose.ui.graphics.Color, val focus: androidx.compose.ui.graphics.Color ) + + @ConsistentCopyVisibility + @ExperimentalOudsApi + data class Ai internal constructor( + val enabled: androidx.compose.ui.graphics.Color, + val hover: androidx.compose.ui.graphics.Color, + val pressed: androidx.compose.ui.graphics.Color, + val loading: androidx.compose.ui.graphics.Color, + val disabled: androidx.compose.ui.graphics.Color, + val focus: androidx.compose.ui.graphics.Color + ) } @ConsistentCopyVisibility data class Content internal constructor( val brand: Brand, val default: Default, - val minimal: Minimal + val minimal: Minimal, + val ai: Ai ) { @ConsistentCopyVisibility @@ -442,42 +475,95 @@ data class OudsComponents internal constructor( val disabled: androidx.compose.ui.graphics.Color, val focus: androidx.compose.ui.graphics.Color ) + + @ConsistentCopyVisibility + @ExperimentalOudsApi + data class Ai internal constructor( + val enabled: androidx.compose.ui.graphics.Color, + val hover: androidx.compose.ui.graphics.Color, + val pressed: androidx.compose.ui.graphics.Color, + val loading: androidx.compose.ui.graphics.Color, + val disabled: androidx.compose.ui.graphics.Color, + val focus: androidx.compose.ui.graphics.Color + ) } } @ConsistentCopyVisibility data class Size internal constructor( val icon: Dp, + @ExperimentalOudsApi val iconDefault: Dp, + @ExperimentalOudsApi val iconSmall: Dp, val iconOnly: Dp, - val loader: Dp, + @ExperimentalOudsApi val iconOnlyDefault: Dp, + @ExperimentalOudsApi val iconOnlySmall: Dp, + @Deprecated("This token has been removed.") val loader: Dp, val maxHeightIconOnly: Dp, + @ExperimentalOudsApi val maxWidthHeightIconOnlyDefault: Dp, + @ExperimentalOudsApi val maxWidthHeightIconOnlySmall: Dp, val minHeight: Dp, - val minWidth: Dp + @ExperimentalOudsApi val minHeightDefault: Dp, + @ExperimentalOudsApi val minHeightSmall: Dp, + val minWidth: Dp, + @ExperimentalOudsApi val minWidthDefault: Dp, + @ExperimentalOudsApi val minWidthSmall: Dp, + @ExperimentalOudsApi val progressIndicatorDefault: Dp, + @ExperimentalOudsApi val progressIndicatorSmall: Dp ) @ConsistentCopyVisibility data class Space internal constructor( val columnGap: ColumnGap, val insetIconOnly: Dp, + val inset: Inset, val paddingBlock: Dp, + @ExperimentalOudsApi val paddingBlockDefault: Dp, + @ExperimentalOudsApi val paddingBlockSmall: Dp, val paddingInline: PaddingInline ) { @ConsistentCopyVisibility data class ColumnGap internal constructor( val chevron: Dp, + @ExperimentalOudsApi val chevronDefault: Dp, + @ExperimentalOudsApi val chevronSmall: Dp, val icon: Dp, - val iconChevron: Dp + @ExperimentalOudsApi val iconDefault: Dp, + @ExperimentalOudsApi val iconSmall: Dp, + val iconChevron: Dp, + @ExperimentalOudsApi val iconChevronDefault: Dp, + @ExperimentalOudsApi val iconChevronSmall: Dp + ) + + @ConsistentCopyVisibility + @ExperimentalOudsApi + data class Inset internal constructor( + val iconOnlyDefault: Dp, + val iconOnlySmall: Dp, + val progressIndicatorOnlyDefault: Dp, + val progressIndicatorOnlySmall: Dp ) @ConsistentCopyVisibility data class PaddingInline internal constructor( val chevronEnd: Dp, + @ExperimentalOudsApi val chevronEndDefault: Dp, + @ExperimentalOudsApi val chevronEndSmall: Dp, val chevronStart: Dp, + @ExperimentalOudsApi val chevronStartDefault: Dp, + @ExperimentalOudsApi val chevronStartSmall: Dp, val endIconStart: Dp, + @ExperimentalOudsApi val endIconStartDefault: Dp, + @ExperimentalOudsApi val endIconStartSmall: Dp, val iconNone: Dp, + @ExperimentalOudsApi val iconNoneDefault: Dp, + @ExperimentalOudsApi val iconNoneSmall: Dp, val iconStart: Dp, - val startIconEnd: Dp + @ExperimentalOudsApi val iconStartDefault: Dp, + @ExperimentalOudsApi val iconStartSmall: Dp, + val startIconEnd: Dp, + @ExperimentalOudsApi val startIconEndDefault: Dp, + @ExperimentalOudsApi val startIconEndSmall: Dp ) } } @@ -1119,6 +1205,65 @@ data class OudsComponents internal constructor( ) } + @ConsistentCopyVisibility + data class ProgressIndicator internal constructor( + val border: Border, + val color: Color, + val size: Size, + val space: Space + ) { + + @ConsistentCopyVisibility + data class Border internal constructor( + val radius: Radius + ) { + + @ConsistentCopyVisibility + data class Radius internal constructor( + val default: Dp, + val rounded: Dp + ) + } + + @ConsistentCopyVisibility + data class Color internal constructor( + val content: Content + ) { + + @ConsistentCopyVisibility + data class Content internal constructor( + val track: androidx.compose.ui.graphics.Color + ) + } + + @ConsistentCopyVisibility + data class Size internal constructor( + val linearIndicatorHeight: Dp + ) + + @ConsistentCopyVisibility + data class Space internal constructor( + val paddingBlock: Dp + ) + } + + @ConsistentCopyVisibility + data class ProgressIndicatorMonochrome internal constructor( + val color: Color + ) { + @ConsistentCopyVisibility + data class Color internal constructor( + val content: Content + ) { + + @ConsistentCopyVisibility + data class Content internal constructor( + val indicator: androidx.compose.ui.graphics.Color, + val track: androidx.compose.ui.graphics.Color + ) + } + } + @ConsistentCopyVisibility data class RadioButton internal constructor( val border: Border, @@ -1424,6 +1569,8 @@ internal fun OudsComponentsTokens.getComponents(): OudsComponents { link = link.getLink(), linkMonochrome = linkMonochrome.getLinkMonochrome(), pinCodeInput = pinCodeInput.getPinCodeInput(), + progressIndicator = progressIndicator.getProgressIndicator(), + progressIndicatorMonochrome = progressIndicatorMonochrome.getProgressIndicatorMonochrome(), radioButton = radioButton.getRadioButton(), switch = switch.getSwitch(), tag = tag.getTag(), @@ -1587,11 +1734,14 @@ private fun OudsButtonTokens.getButton(): OudsComponents.Button { return OudsComponents.Button( border = OudsComponents.Button.Border( radius = OudsComponents.Button.Border.Radius( + aiIconOnly = borderRadiusAiIconOnly.value, default = borderRadiusDefault.value, rounded = borderRadiusRounded.value, social = borderRadiusSocial.value ), width = OudsComponents.Button.Border.Width( + ai = borderWidthAi.value, + aiInteraction = borderWidthAiInteraction.value, default = borderWidthDefault.value, defaultInteraction = borderWidthDefaultInteraction.value, defaultInteractionMonochrome = borderWidthDefaultInteractionMono.value @@ -1618,6 +1768,14 @@ private fun OudsButtonTokens.getButton(): OudsComponents.Button { hover = colorBgMinimalHover.value, pressed = colorBgMinimalPressed.value, focus = colorBgMinimalFocus.value + ), + ai = OudsComponents.Button.Color.Background.Ai( + enabled = colorBgAiEnabled.value, + hover = colorBgAiHover.value, + pressed = colorBgAiPressed.value, + loading = colorBgAiLoading.value, + disabled = colorBgAiDisabled.value, + focus = colorBgAiFocus.value ) ), border = OudsComponents.Button.Color.Border( @@ -1628,6 +1786,14 @@ private fun OudsButtonTokens.getButton(): OudsComponents.Button { loading = colorBorderDefaultLoading.value, disabled = colorBorderDefaultDisabled.value, focus = colorBorderDefaultFocus.value + ), + ai = OudsComponents.Button.Color.Border.Ai( + enabled = colorBorderAiEnabled.value, + hover = colorBorderAiHover.value, + pressed = colorBorderAiPressed.value, + loading = colorBorderAiLoading.value, + disabled = colorBorderAiDisabled.value, + focus = colorBorderAiFocus.value ) ), content = OudsComponents.Button.Color.Content( @@ -1653,32 +1819,78 @@ private fun OudsButtonTokens.getButton(): OudsComponents.Button { loading = colorContentMinimalLoading.value, disabled = colorContentMinimalDisabled.value, focus = colorContentMinimalFocus.value + ), + ai = OudsComponents.Button.Color.Content.Ai( + enabled = colorContentAiEnabled.value, + hover = colorContentAiHover.value, + pressed = colorContentAiPressed.value, + loading = colorContentAiLoading.value, + disabled = colorContentAiDisabled.value, + focus = colorContentAiFocus.value ) ) ), size = OudsComponents.Button.Size( - icon = sizeIcon.value, - iconOnly = sizeIconOnly.value, - loader = sizeLoader.value, - maxHeightIconOnly = sizeMaxHeightIconOnly.value, - minHeight = sizeMinHeight.value, - minWidth = sizeMinWidth.value + icon = sizeIconDefault.value, + iconDefault = sizeIconDefault.value, + iconSmall = sizeIconSmall.value, + iconOnly = sizeIconOnlyDefault.value, + iconOnlyDefault = sizeIconOnlyDefault.value, + iconOnlySmall = sizeIconOnlySmall.value, + loader = @Suppress("DEPRECATION") sizeLoader.value, + maxHeightIconOnly = sizeMaxWidthHeightIconOnlyDefault.value, + maxWidthHeightIconOnlyDefault = sizeMaxWidthHeightIconOnlyDefault.value, + maxWidthHeightIconOnlySmall = sizeMaxWidthHeightIconOnlySmall.value, + minHeight = sizeMinHeightDefault.value, + minHeightDefault = sizeMinHeightDefault.value, + minHeightSmall = sizeMinHeightSmall.value, + minWidth = sizeMinWidthDefault.value, + minWidthDefault = sizeMinWidthDefault.value, + minWidthSmall = sizeMinWidthSmall.value, + progressIndicatorDefault = sizeProgressIndicatorDefault.value, + progressIndicatorSmall = sizeProgressIndicatorSmall.value ), space = OudsComponents.Button.Space( columnGap = OudsComponents.Button.Space.ColumnGap( - chevron = spaceColumnGapChevron.value, - icon = spaceColumnGapIcon.value, - iconChevron = spaceColumnGapIconChevron.value + chevron = spaceColumnGapChevronDefault.value, + chevronDefault = spaceColumnGapChevronDefault.value, + chevronSmall = spaceColumnGapChevronSmall.value, + icon = spaceColumnGapIconDefault.value, + iconDefault = spaceColumnGapIconDefault.value, + iconSmall = spaceColumnGapIconSmall.value, + iconChevron = spaceColumnGapIconChevronDefault.value, + iconChevronDefault = spaceColumnGapIconChevronDefault.value, + iconChevronSmall = spaceColumnGapIconChevronSmall.value ), - insetIconOnly = spaceInsetIconOnly.value, - paddingBlock = spacePaddingBlock.value, + insetIconOnly = spaceInsetIconOnlyDefault.value, + inset = OudsComponents.Button.Space.Inset( + iconOnlyDefault = spaceInsetIconOnlyDefault.value, + iconOnlySmall = spaceInsetIconOnlySmall.value, + progressIndicatorOnlyDefault = spaceInsetProgressIndicartorOnlyDefault.value, + progressIndicatorOnlySmall = spaceInsetProgressIndicartorOnlySmall.value + ), + paddingBlock = spacePaddingBlockDefault.value, + paddingBlockDefault = spacePaddingBlockDefault.value, + paddingBlockSmall = spacePaddingBlockSmall.value, paddingInline = OudsComponents.Button.Space.PaddingInline( - chevronEnd = spacePaddingInlineChevronEnd.value, - chevronStart = spacePaddingInlineChevronStart.value, - endIconStart = spacePaddingInlineEndIconStart.value, - iconNone = spacePaddingInlineIconNone.value, - iconStart = spacePaddingInlineIconStart.value, - startIconEnd = spacePaddingInlineStartIconEnd.value + chevronEnd = spacePaddingInlineChevronEndDefault.value, + chevronEndDefault = spacePaddingInlineChevronEndDefault.value, + chevronEndSmall = spacePaddingInlineChevronEndSmall.value, + chevronStart = spacePaddingInlineChevronStartDefault.value, + chevronStartDefault = spacePaddingInlineChevronStartDefault.value, + chevronStartSmall = spacePaddingInlineChevronStartSmall.value, + endIconStart = spacePaddingInlineEndIconStartDefault.value, + endIconStartDefault = spacePaddingInlineEndIconStartDefault.value, + endIconStartSmall = spacePaddingInlineEndIconStartSmall.value, + iconNone = spacePaddingInlineIconNoneDefault.value, + iconNoneDefault = spacePaddingInlineIconNoneDefault.value, + iconNoneSmall = spacePaddingInlineIconNoneSmall.value, + iconStart = spacePaddingInlineIconStartDefault.value, + iconStartDefault = spacePaddingInlineIconStartDefault.value, + iconStartSmall = spacePaddingInlineIconStartSmall.value, + startIconEnd = spacePaddingInlineStartIconEndDefault.value, + startIconEndDefault = spacePaddingInlineStartIconEndDefault.value, + startIconEndSmall = spacePaddingInlineStartIconEndSmall.value ) ) ) @@ -2084,6 +2296,41 @@ private fun OudsPinCodeInputTokens.getPinCodeInput(): OudsComponents.PinCodeInpu ) } +@Composable +private fun OudsProgressIndicatorTokens.getProgressIndicator(): OudsComponents.ProgressIndicator { + return OudsComponents.ProgressIndicator( + border = OudsComponents.ProgressIndicator.Border( + radius = OudsComponents.ProgressIndicator.Border.Radius( + default = borderRadiusDefault.value, + rounded = borderRadiusRounded.value + ) + ), + color = OudsComponents.ProgressIndicator.Color( + content = OudsComponents.ProgressIndicator.Color.Content( + track = colorContentTrack.value + ) + ), + size = OudsComponents.ProgressIndicator.Size( + linearIndicatorHeight = sizeLinearIndicatorHeight.dp + ), + space = OudsComponents.ProgressIndicator.Space( + paddingBlock = spacePaddingBlock.value + ) + ) +} + +@Composable +private fun OudsProgressIndicatorMonoTokens.getProgressIndicatorMonochrome(): OudsComponents.ProgressIndicatorMonochrome { + return OudsComponents.ProgressIndicatorMonochrome( + color = OudsComponents.ProgressIndicatorMonochrome.Color( + content = OudsComponents.ProgressIndicatorMonochrome.Color.Content( + indicator = colorContentIndicator.value, + track = colorContentTrack.value + ) + ) + ) +} + @Composable private fun OudsRadioButtonTokens.getRadioButton(): OudsComponents.RadioButton { return OudsComponents.RadioButton( diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsSizes.kt b/core/src/main/java/com/orange/ouds/core/theme/OudsSizes.kt index 8566faaa0e..d6cca6242b 100644 --- a/core/src/main/java/com/orange/ouds/core/theme/OudsSizes.kt +++ b/core/src/main/java/com/orange/ouds/core/theme/OudsSizes.kt @@ -16,6 +16,7 @@ import androidx.compose.runtime.Composable import androidx.compose.runtime.Stable import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp +import com.orange.ouds.foundation.ExperimentalOudsApi import com.orange.ouds.foundation.InternalOudsApi import com.orange.ouds.theme.tokens.OudsSizeKeyToken import com.orange.ouds.theme.tokens.semantic.OudsSizeSemanticTokens @@ -36,7 +37,9 @@ import com.orange.ouds.theme.tokens.semantic.OudsSizeSemanticTokens data class OudsSizes internal constructor( val icon: Icon, val maxWidth: MaxWidth, - val minInteractiveArea: Dp + val minInteractiveArea: Dp, + @ExperimentalOudsApi val minInteractiveAreaDefault: Dp, + @ExperimentalOudsApi val minInteractiveAreaSmall: Dp ) { /** * Sizes for icons depending on their usage context. @@ -584,7 +587,9 @@ internal fun OudsSizeSemanticTokens.getSizes(windowWidthSizeClass: WindowWidthSi ) ) ), - minInteractiveArea = minInteractiveArea.dp + minInteractiveArea = minInteractiveArea.dp, + minInteractiveAreaDefault = minInteractiveAreaDefault.dp, + minInteractiveAreaSmall = minInteractiveAreaSmall.dp ) } @@ -703,5 +708,7 @@ val OudsSizeKeyToken.value: Dp is OudsSizeKeyToken.Icon.WithBody -> OudsTheme.sizes.fromToken(this) is OudsSizeKeyToken.Icon.WithLabel -> OudsTheme.sizes.fromToken(this) is OudsSizeKeyToken.MaxWidth -> OudsTheme.sizes.fromToken(this) - is OudsSizeKeyToken.MinInteractiveArea -> OudsTheme.sizes.minInteractiveArea + OudsSizeKeyToken.MinInteractiveArea -> OudsTheme.sizes.minInteractiveArea + OudsSizeKeyToken.MinInteractiveAreaDefault -> OudsTheme.sizes.minInteractiveAreaDefault + OudsSizeKeyToken.MinInteractiveAreaSmall -> OudsTheme.sizes.minInteractiveAreaSmall } diff --git a/core/src/main/java/com/orange/ouds/core/utilities/OudsPreviewableComponent.kt b/core/src/main/java/com/orange/ouds/core/utilities/OudsPreviewableComponent.kt index a9a9177b6d..236752e8a9 100644 --- a/core/src/main/java/com/orange/ouds/core/utilities/OudsPreviewableComponent.kt +++ b/core/src/main/java/com/orange/ouds/core/utilities/OudsPreviewableComponent.kt @@ -31,6 +31,7 @@ import com.orange.ouds.core.component.OudsCheckboxPreviewParameter import com.orange.ouds.core.component.OudsCheckboxPreviewParameterProvider import com.orange.ouds.core.component.OudsCircularProgressIndicatorPreviewParameter import com.orange.ouds.core.component.OudsCircularProgressIndicatorPreviewParameterProvider +import com.orange.ouds.core.component.OudsCircularProgressIndicatorSizedPreviewParameterProvider import com.orange.ouds.core.component.OudsColoredBoxColor import com.orange.ouds.core.component.OudsColoredBoxPreviewParameterProvider import com.orange.ouds.core.component.OudsControlItemConstrainedMaxWidthPreviewParameterProvider @@ -106,6 +107,7 @@ import com.orange.ouds.core.component.PreviewOudsCheckboxItemWithLongDescription import com.orange.ouds.core.component.PreviewOudsCheckboxItemWithRichText import com.orange.ouds.core.component.PreviewOudsCheckboxItemWithUntintedIcon import com.orange.ouds.core.component.PreviewOudsCircularProgressIndicator +import com.orange.ouds.core.component.PreviewOudsCircularProgressIndicatorSized import com.orange.ouds.core.component.PreviewOudsColoredBox import com.orange.ouds.core.component.PreviewOudsDivider import com.orange.ouds.core.component.PreviewOudsExtendedFloatingActionButton @@ -129,6 +131,7 @@ import com.orange.ouds.core.component.PreviewOudsNavigationBar import com.orange.ouds.core.component.PreviewOudsNavigationBarItem import com.orange.ouds.core.component.PreviewOudsNavigationButton import com.orange.ouds.core.component.PreviewOudsNavigationButtonOnTwoLines +import com.orange.ouds.core.component.PreviewOudsNavigationButtonWithRoundedCorners import com.orange.ouds.core.component.PreviewOudsPasswordInput import com.orange.ouds.core.component.PreviewOudsPasswordInputWithRichText import com.orange.ouds.core.component.PreviewOudsPinCodeInput @@ -142,6 +145,10 @@ import com.orange.ouds.core.component.PreviewOudsRadioButtonItemWithDescriptionT import com.orange.ouds.core.component.PreviewOudsRadioButtonItemWithEdgeToEdgeDisabled import com.orange.ouds.core.component.PreviewOudsRadioButtonItemWithRichText import com.orange.ouds.core.component.PreviewOudsRadioButtonItemWithUntintedIcon +import com.orange.ouds.core.component.PreviewOudsSmallButton +import com.orange.ouds.core.component.PreviewOudsSmallButtonOnTwoLines +import com.orange.ouds.core.component.PreviewOudsSmallButtonWithRoundedCorners +import com.orange.ouds.core.component.PreviewOudsSmallButtonWithUntintedIcon import com.orange.ouds.core.component.PreviewOudsSmallFloatingActionButton import com.orange.ouds.core.component.PreviewOudsSuggestionChip import com.orange.ouds.core.component.PreviewOudsSuggestionChipWithUntintedIcon @@ -530,17 +537,35 @@ interface OudsPreviewableComponent { override fun isPreviewAvailable(darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean) = true } - object CircularProgressIndicator : OudsPreviewableComponent { + object CircularProgressIndicator { - override val parameters: List = OudsCircularProgressIndicatorPreviewParameterProvider().values.toList() + object Default : OudsPreviewableComponent { - @Composable - override fun Preview(theme: OudsThemeContract, darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean, parameter: Any?) { - PreviewOudsCircularProgressIndicator( - theme = theme, - darkThemeEnabled = darkThemeEnabled, - parameter = parameter as OudsCircularProgressIndicatorPreviewParameter - ) + override val parameters: List = OudsCircularProgressIndicatorPreviewParameterProvider().values.toList() + + @Composable + override fun Preview(theme: OudsThemeContract, darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean, parameter: Any?) { + PreviewOudsCircularProgressIndicator( + theme = theme, + darkThemeEnabled = darkThemeEnabled, + parameter = parameter as OudsCircularProgressIndicatorPreviewParameter + ) + } + } + + object Sized : OudsPreviewableComponent { + + override val parameters: List = OudsCircularProgressIndicatorSizedPreviewParameterProvider().values.toList() + + @Composable + override fun Preview(theme: OudsThemeContract, darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean, parameter: Any?) { + PreviewOudsCircularProgressIndicatorSized( + theme = theme, + size = parameter as Float + ) + } + + override fun isPreviewAvailable(darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean) = !darkThemeEnabled && !highContrastModeEnabled } } @@ -903,6 +928,18 @@ interface OudsPreviewableComponent { } } + object WithRoundedCorners : OudsPreviewableComponent { + + override val parameters: List = emptyList() + + @Composable + override fun Preview(theme: OudsThemeContract, darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean, parameter: Any?) { + PreviewOudsNavigationButtonWithRoundedCorners(theme = theme) + } + + override fun isPreviewAvailable(darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean) = !darkThemeEnabled && !highContrastModeEnabled + } + object OnTwoLines : OudsPreviewableComponent { override val parameters: List = emptyList() @@ -1120,6 +1157,59 @@ interface OudsPreviewableComponent { override fun isPreviewAvailable(darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean) = true } + object SmallButton { + + object Default : OudsPreviewableComponent { + + override val parameters: List = OudsButtonPreviewParameterProvider().values.toList() + + @Composable + override fun Preview(theme: OudsThemeContract, darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean, parameter: Any?) { + PreviewOudsSmallButton( + theme = theme, + darkThemeEnabled = darkThemeEnabled, + parameter = parameter as OudsButtonPreviewParameter + ) + } + } + + object WithRoundedCorners : OudsPreviewableComponent { + + override val parameters: List = emptyList() + + @Composable + override fun Preview(theme: OudsThemeContract, darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean, parameter: Any?) { + PreviewOudsSmallButtonWithRoundedCorners(theme = theme) + } + + override fun isPreviewAvailable(darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean) = !darkThemeEnabled && !highContrastModeEnabled + } + + object OnTwoLines : OudsPreviewableComponent { + + override val parameters: List = emptyList() + + @Composable + override fun Preview(theme: OudsThemeContract, darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean, parameter: Any?) { + PreviewOudsSmallButtonOnTwoLines(theme = theme) + } + + override fun isPreviewAvailable(darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean) = !darkThemeEnabled && !highContrastModeEnabled + } + + object WithUntintedIcon : OudsPreviewableComponent { + + override val parameters: List = emptyList() + + @Composable + override fun Preview(theme: OudsThemeContract, darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean, parameter: Any?) { + PreviewOudsSmallButtonWithUntintedIcon(theme = theme) + } + + override fun isPreviewAvailable(darkThemeEnabled: Boolean, highContrastModeEnabled: Boolean) = !darkThemeEnabled && !highContrastModeEnabled + } + } + object SuggestionChip { object Default : OudsPreviewableComponent { diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/OudsVersion.kt b/theme-contract/src/main/java/com/orange/ouds/theme/OudsVersion.kt index 73ac2aee10..d0b44f472c 100644 --- a/theme-contract/src/main/java/com/orange/ouds/theme/OudsVersion.kt +++ b/theme-contract/src/main/java/com/orange/ouds/theme/OudsVersion.kt @@ -23,7 +23,7 @@ object OudsVersion { const val BadgeIcon = "1.3.0" const val BottomSheet = "0.0.0" const val BulletList = "1.1.0" - const val Button = "3.2.0" + const val Button = "3.3.0" const val Checkbox = "2.4.0" const val Divider = "1.0.0" const val Fab = "0.0.0" diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsSizeKeyToken.kt b/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsSizeKeyToken.kt index 999f8b3300..4dddfc8f24 100644 --- a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsSizeKeyToken.kt +++ b/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsSizeKeyToken.kt @@ -15,6 +15,7 @@ package com.orange.ouds.theme.tokens +import com.orange.ouds.foundation.ExperimentalOudsApi import com.orange.ouds.foundation.InternalOudsApi /** @@ -34,45 +35,53 @@ sealed interface OudsSizeKeyToken : OudsKeyToken { data object TwoExtraLarge : Decorative data object TwoExtraSmall : Decorative } + sealed interface WithBody : Icon { sealed interface Large : WithBody { data object SizeLarge : Large data object SizeMedium : Large data object SizeSmall : Large } + sealed interface Medium : WithBody { data object SizeLarge : Medium data object SizeMedium : Medium data object SizeSmall : Medium } + sealed interface Small : WithBody { data object SizeLarge : Small data object SizeMedium : Small data object SizeSmall : Small } } + sealed interface WithHeading : Icon { sealed interface ExtraLarge : WithHeading { data object SizeLarge : ExtraLarge data object SizeMedium : ExtraLarge data object SizeSmall : ExtraLarge } + sealed interface Large : WithHeading { data object SizeLarge : Large data object SizeMedium : Large data object SizeSmall : Large } + sealed interface Medium : WithHeading { data object SizeLarge : Medium data object SizeMedium : Medium data object SizeSmall : Medium } + sealed interface Small : WithHeading { data object SizeLarge : Small data object SizeMedium : Small data object SizeSmall : Small } } + sealed interface WithLabel : Icon { sealed interface ExtraLarge : WithLabel { data object SizeExtraSmall : ExtraLarge @@ -80,6 +89,7 @@ sealed interface OudsSizeKeyToken : OudsKeyToken { data object SizeMedium : ExtraLarge data object SizeSmall : ExtraLarge } + sealed interface Large : WithLabel { data object SizeExtraLarge : Large data object SizeExtraSmall : Large @@ -87,12 +97,14 @@ sealed interface OudsSizeKeyToken : OudsKeyToken { data object SizeMedium : Large data object SizeSmall : Large } + sealed interface Medium : WithLabel { data object SizeExtraSmall : Medium data object SizeLarge : Medium data object SizeMedium : Medium data object SizeSmall : Medium } + sealed interface Small : WithLabel { data object SizeExtraSmall : Small data object SizeLarge : Small @@ -101,23 +113,27 @@ sealed interface OudsSizeKeyToken : OudsKeyToken { } } } + sealed interface MaxWidth : OudsSizeKeyToken { sealed interface Body : MaxWidth { data object Large : Body data object Medium : Body data object Small : Body } + sealed interface Display : MaxWidth { data object Large : Display data object Medium : Display data object Small : Display } + sealed interface Heading : MaxWidth { data object ExtraLarge : Heading data object Large : Heading data object Medium : Heading data object Small : Heading } + sealed interface Label : MaxWidth { data object ExtraLarge : Label data object Large : Label @@ -125,6 +141,13 @@ sealed interface OudsSizeKeyToken : OudsKeyToken { data object Small : Label } } + data object MinInteractiveArea : OudsSizeKeyToken + + @ExperimentalOudsApi + data object MinInteractiveAreaDefault : OudsSizeKeyToken + + @ExperimentalOudsApi + data object MinInteractiveAreaSmall : OudsSizeKeyToken } diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsButtonTokens.kt b/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsButtonTokens.kt index 79fd0a6660..78bf8e97c3 100644 --- a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsButtonTokens.kt +++ b/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsButtonTokens.kt @@ -24,12 +24,21 @@ import com.orange.ouds.theme.tokens.OudsSpaceKeyToken /** @suppress */ @InternalOudsApi interface OudsButtonTokens { + val borderRadiusAiIconOnly: OudsBorderKeyToken.Radius val borderRadiusDefault: OudsBorderKeyToken.Radius val borderRadiusRounded: OudsBorderKeyToken.Radius val borderRadiusSocial: OudsBorderKeyToken.Radius + val borderWidthAi: OudsBorderKeyToken.Width + val borderWidthAiInteraction: OudsBorderKeyToken.Width val borderWidthDefault: OudsBorderKeyToken.Width val borderWidthDefaultInteraction: OudsBorderKeyToken.Width val borderWidthDefaultInteractionMono: OudsBorderKeyToken.Width + val colorBgAiDisabled: OudsColorKeyToken + val colorBgAiEnabled: OudsColorKeyToken + val colorBgAiFocus: OudsColorKeyToken + val colorBgAiHover: OudsColorKeyToken + val colorBgAiLoading: OudsColorKeyToken + val colorBgAiPressed: OudsColorKeyToken val colorBgBrandEnabled: OudsColorKeyToken val colorBgBrandFocus: OudsColorKeyToken val colorBgBrandHover: OudsColorKeyToken @@ -44,12 +53,24 @@ interface OudsButtonTokens { val colorBgMinimalFocus: OudsColorKeyToken val colorBgMinimalHover: OudsColorKeyToken val colorBgMinimalPressed: OudsColorKeyToken + val colorBorderAiDisabled: OudsColorKeyToken + val colorBorderAiEnabled: OudsColorKeyToken + val colorBorderAiFocus: OudsColorKeyToken + val colorBorderAiHover: OudsColorKeyToken + val colorBorderAiLoading: OudsColorKeyToken + val colorBorderAiPressed: OudsColorKeyToken val colorBorderDefaultDisabled: OudsColorKeyToken val colorBorderDefaultEnabled: OudsColorKeyToken val colorBorderDefaultFocus: OudsColorKeyToken val colorBorderDefaultHover: OudsColorKeyToken val colorBorderDefaultLoading: OudsColorKeyToken val colorBorderDefaultPressed: OudsColorKeyToken + val colorContentAiDisabled: OudsColorKeyToken + val colorContentAiEnabled: OudsColorKeyToken + val colorContentAiFocus: OudsColorKeyToken + val colorContentAiHover: OudsColorKeyToken + val colorContentAiLoading: OudsColorKeyToken + val colorContentAiPressed: OudsColorKeyToken val colorContentBrandEnabled: OudsColorKeyToken val colorContentBrandFocus: OudsColorKeyToken val colorContentBrandHover: OudsColorKeyToken @@ -67,21 +88,42 @@ interface OudsButtonTokens { val colorContentMinimalHover: OudsColorKeyToken val colorContentMinimalLoading: OudsColorKeyToken val colorContentMinimalPressed: OudsColorKeyToken - val sizeIcon: OudsSizeKeyToken.Icon - val sizeIconOnly: OudsSizeKeyToken.Icon + val sizeIconDefault: OudsSizeKeyToken.Icon + val sizeIconOnlyDefault: OudsSizeKeyToken.Icon + val sizeIconOnlySmall: OudsSizeKeyToken.Icon + val sizeIconSmall: OudsSizeKeyToken.Icon + @Deprecated("") val sizeLoader: OudsSizeKeyToken.Icon - val sizeMaxHeightIconOnly: OudsSizeKeyToken - val sizeMinHeight: OudsSizeKeyToken - val sizeMinWidth: OudsSizeKeyToken - val spaceColumnGapChevron: OudsSpaceKeyToken.ColumnGap - val spaceColumnGapIcon: OudsSpaceKeyToken.ColumnGap - val spaceColumnGapIconChevron: OudsSpaceKeyToken.ColumnGap - val spaceInsetIconOnly: OudsSpaceKeyToken.Inset - val spacePaddingBlock: OudsSpaceKeyToken.PaddingBlock - val spacePaddingInlineChevronEnd: OudsSpaceKeyToken.PaddingInline - val spacePaddingInlineChevronStart: OudsSpaceKeyToken.PaddingInline - val spacePaddingInlineEndIconStart: OudsSpaceKeyToken.PaddingInline - val spacePaddingInlineIconNone: OudsSpaceKeyToken.PaddingInline - val spacePaddingInlineIconStart: OudsSpaceKeyToken.PaddingInline - val spacePaddingInlineStartIconEnd: OudsSpaceKeyToken.PaddingInline + val sizeMaxWidthHeightIconOnlyDefault: OudsSizeKeyToken + val sizeMaxWidthHeightIconOnlySmall: OudsSizeKeyToken + val sizeMinHeightDefault: OudsSizeKeyToken + val sizeMinHeightSmall: OudsSizeKeyToken + val sizeMinWidthDefault: OudsSizeKeyToken + val sizeMinWidthSmall: OudsSizeKeyToken + val sizeProgressIndicatorDefault: OudsSizeKeyToken.Icon + val sizeProgressIndicatorSmall: OudsSizeKeyToken.Icon + val spaceColumnGapChevronDefault: OudsSpaceKeyToken.ColumnGap + val spaceColumnGapChevronSmall: OudsSpaceKeyToken.ColumnGap + val spaceColumnGapIconChevronDefault: OudsSpaceKeyToken.ColumnGap + val spaceColumnGapIconChevronSmall: OudsSpaceKeyToken.ColumnGap + val spaceColumnGapIconDefault: OudsSpaceKeyToken.ColumnGap + val spaceColumnGapIconSmall: OudsSpaceKeyToken.ColumnGap + val spaceInsetIconOnlyDefault: OudsSpaceKeyToken.Inset + val spaceInsetIconOnlySmall: OudsSpaceKeyToken.Inset + val spaceInsetProgressIndicartorOnlyDefault: OudsSpaceKeyToken.Inset + val spaceInsetProgressIndicartorOnlySmall: OudsSpaceKeyToken.Inset + val spacePaddingBlockDefault: OudsSpaceKeyToken.PaddingBlock + val spacePaddingBlockSmall: OudsSpaceKeyToken.PaddingBlock + val spacePaddingInlineChevronEndDefault: OudsSpaceKeyToken.PaddingInline + val spacePaddingInlineChevronEndSmall: OudsSpaceKeyToken.PaddingInline + val spacePaddingInlineChevronStartDefault: OudsSpaceKeyToken.PaddingInline + val spacePaddingInlineChevronStartSmall: OudsSpaceKeyToken.PaddingInline + val spacePaddingInlineEndIconStartDefault: OudsSpaceKeyToken.PaddingInline + val spacePaddingInlineEndIconStartSmall: OudsSpaceKeyToken.PaddingInline + val spacePaddingInlineIconNoneDefault: OudsSpaceKeyToken.PaddingInline + val spacePaddingInlineIconNoneSmall: OudsSpaceKeyToken.PaddingInline + val spacePaddingInlineIconStartDefault: OudsSpaceKeyToken.PaddingInline + val spacePaddingInlineIconStartSmall: OudsSpaceKeyToken.PaddingInline + val spacePaddingInlineStartIconEndDefault: OudsSpaceKeyToken.PaddingInline + val spacePaddingInlineStartIconEndSmall: OudsSpaceKeyToken.PaddingInline } diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsComponentsTokens.kt b/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsComponentsTokens.kt index c33abb9423..d9d0f38e32 100644 --- a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsComponentsTokens.kt +++ b/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsComponentsTokens.kt @@ -33,6 +33,7 @@ interface OudsComponentsTokens { val linkMonochrome: OudsLinkMonoTokens val pinCodeInput: OudsPinCodeInputTokens val progressIndicator: OudsProgressIndicatorTokens + val progressIndicatorMonochrome: OudsProgressIndicatorMonoTokens val radioButton: OudsRadioButtonTokens val switch: OudsSwitchTokens val tag: OudsTagTokens diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsProgressIndicatorMonoTokens.kt b/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsProgressIndicatorMonoTokens.kt new file mode 100644 index 0000000000..e99f04d4ba --- /dev/null +++ b/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsProgressIndicatorMonoTokens.kt @@ -0,0 +1,26 @@ +// +// Software Name: OUDS Android +// SPDX-FileCopyrightText: Copyright (c) Orange SA +// SPDX-License-Identifier: MIT +// +// This software is distributed under the MIT license, +// the text of which is available at https://opensource.org/license/MIT/ +// or see the "LICENSE" file for more details. +// +// Software description: Android library of reusable graphical components +// + +// Orange brand tokens version 2.5.0 +// Generated by Tokenator + +package com.orange.ouds.theme.tokens.components + +import com.orange.ouds.foundation.InternalOudsApi +import com.orange.ouds.theme.tokens.OudsColorKeyToken + +/** @suppress */ +@InternalOudsApi +interface OudsProgressIndicatorMonoTokens { + val colorContentIndicator: OudsColorKeyToken + val colorContentTrack: OudsLightDarkColor +} diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsSizeSemanticTokens.kt b/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsSizeSemanticTokens.kt index 5794875ed4..b149afe5ee 100644 --- a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsSizeSemanticTokens.kt +++ b/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsSizeSemanticTokens.kt @@ -117,4 +117,6 @@ interface OudsSizeSemanticTokens { val maxWidthLabelXlargeMobile: Float val maxWidthLabelXlargeTablet: Float val minInteractiveArea: Float + val minInteractiveAreaDefault: Float + val minInteractiveAreaSmall: Float } diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonTokens.kt b/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonTokens.kt index 5a313642fd..8b8f060e4f 100644 --- a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonTokens.kt +++ b/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonTokens.kt @@ -23,12 +23,21 @@ import com.orange.ouds.theme.tokens.OudsSpaceKeyToken import com.orange.ouds.theme.tokens.components.OudsButtonTokens internal data class OrangeCompactButtonTokens( + override val borderRadiusAiIconOnly: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, override val borderRadiusDefault: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Default, override val borderRadiusRounded: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Medium, override val borderRadiusSocial: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, + override val borderWidthAi: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Default, + override val borderWidthAiInteraction: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Medium, override val borderWidthDefault: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Default, override val borderWidthDefaultInteraction: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Medium, override val borderWidthDefaultInteractionMono: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.None, + override val colorBgAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiFocus: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiHover: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiLoading: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiPressed: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBgBrandEnabled: OudsColorKeyToken = OudsColorKeyToken.Surface.Brand.Primary, override val colorBgBrandFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Focus, override val colorBgBrandHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, @@ -43,12 +52,24 @@ internal data class OrangeCompactButtonTokens( override val colorBgMinimalFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Focus, override val colorBgMinimalHover: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Hover, override val colorBgMinimalPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Pressed, + override val colorBorderAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Action.Disabled, + override val colorBorderAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiFocus: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiHover: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiLoading: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiPressed: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBorderDefaultDisabled: OudsColorKeyToken = OudsColorKeyToken.Action.Disabled, override val colorBorderDefaultEnabled: OudsColorKeyToken = OudsColorKeyToken.Action.Enabled, override val colorBorderDefaultFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Focus, override val colorBorderDefaultHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, override val colorBorderDefaultLoading: OudsColorKeyToken = OudsColorKeyToken.Action.Loading, override val colorBorderDefaultPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Pressed, + override val colorContentAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Action.Disabled, + override val colorContentAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Action.Enabled, + override val colorContentAiFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Focus, + override val colorContentAiHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, + override val colorContentAiLoading: OudsColorKeyToken = OudsColorKeyToken.Action.Loading, + override val colorContentAiPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Pressed, override val colorContentBrandEnabled: OudsColorKeyToken = OudsColorKeyToken.Content.OnBrand.Primary, override val colorContentBrandFocus: OudsColorKeyToken = OudsColorKeyToken.Content.OnAction.Focus, override val colorContentBrandHover: OudsColorKeyToken = OudsColorKeyToken.Content.OnAction.Hover, @@ -66,21 +87,42 @@ internal data class OrangeCompactButtonTokens( override val colorContentMinimalHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, override val colorContentMinimalLoading: OudsColorKeyToken = OudsColorKeyToken.Content.Default, override val colorContentMinimalPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Pressed, - override val sizeIcon: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, - override val sizeIconOnly: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeSmall, + override val sizeIconDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeIconOnlyDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeSmall, + override val sizeIconOnlySmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeIconSmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Medium.SizeSmall, + @Deprecated("") override val sizeLoader: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, - override val sizeMaxHeightIconOnly: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val sizeMinHeight: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val sizeMinWidth: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val spaceColumnGapChevron: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, - override val spaceColumnGapIcon: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.Small, - override val spaceColumnGapIconChevron: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, - override val spaceInsetIconOnly: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Medium, - override val spacePaddingBlock: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Medium, - override val spacePaddingInlineChevronEnd: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, - override val spacePaddingInlineChevronStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, - override val spacePaddingInlineEndIconStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, - override val spacePaddingInlineIconNone: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.FourExtraLarge, - override val spacePaddingInlineIconStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ExtraLarge, - override val spacePaddingInlineStartIconEnd: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge + override val sizeMaxWidthHeightIconOnlyDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMaxWidthHeightIconOnlySmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeMinHeightDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMinHeightSmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeMinWidthDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMinWidthSmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeProgressIndicatorDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeProgressIndicatorSmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Medium.SizeSmall, + override val spaceColumnGapChevronDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, + override val spaceColumnGapChevronSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, + override val spaceColumnGapIconChevronDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, + override val spaceColumnGapIconChevronSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ThreeExtraSmall, + override val spaceColumnGapIconDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, + override val spaceColumnGapIconSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, + override val spaceInsetIconOnlyDefault: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Medium, + override val spaceInsetIconOnlySmall: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Small, + override val spaceInsetProgressIndicartorOnlyDefault: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.FourExtraSmall, + override val spaceInsetProgressIndicartorOnlySmall: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.FourExtraSmall, + override val spacePaddingBlockDefault: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Medium, + override val spacePaddingBlockSmall: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Small, + override val spacePaddingInlineChevronEndDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineChevronEndSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Medium, + override val spacePaddingInlineChevronStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineChevronStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Medium, + override val spacePaddingInlineEndIconStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, + override val spacePaddingInlineEndIconStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge, + override val spacePaddingInlineIconNoneDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, + override val spacePaddingInlineIconNoneSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge, + override val spacePaddingInlineIconStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ExtraLarge, + override val spacePaddingInlineIconStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineStartIconEndDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, + override val spacePaddingInlineStartIconEndSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge ) : OudsButtonTokens diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactComponentsTokens.kt b/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactComponentsTokens.kt index aa4e7decfd..c94e1ce3be 100644 --- a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactComponentsTokens.kt +++ b/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactComponentsTokens.kt @@ -28,6 +28,7 @@ import com.orange.ouds.theme.tokens.components.OudsInputTagTokens import com.orange.ouds.theme.tokens.components.OudsLinkMonoTokens import com.orange.ouds.theme.tokens.components.OudsLinkTokens import com.orange.ouds.theme.tokens.components.OudsPinCodeInputTokens +import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorMonoTokens import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorTokens import com.orange.ouds.theme.tokens.components.OudsRadioButtonTokens import com.orange.ouds.theme.tokens.components.OudsSwitchTokens @@ -52,6 +53,7 @@ internal data class OrangeCompactComponentsTokens( override val linkMonochrome: OudsLinkMonoTokens = OrangeCompactLinkMonoTokens(), override val pinCodeInput: OudsPinCodeInputTokens = OrangeCompactPinCodeInputTokens(), override val progressIndicator: OudsProgressIndicatorTokens = OrangeCompactProgressIndicatorTokens(), + override val progressIndicatorMonochrome: OudsProgressIndicatorMonoTokens = OrangeCompactProgressIndicatorMonoTokens(), override val radioButton: OudsRadioButtonTokens = OrangeCompactRadioButtonTokens(), override val switch: OudsSwitchTokens = OrangeCompactSwitchTokens(), override val tag: OudsTagTokens = OrangeCompactTagTokens(), diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorMonoTokens.kt b/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorMonoTokens.kt new file mode 100644 index 0000000000..a01eb5ec23 --- /dev/null +++ b/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorMonoTokens.kt @@ -0,0 +1,28 @@ +// +// Software Name: OUDS Android +// SPDX-FileCopyrightText: Copyright (c) Orange SA +// SPDX-License-Identifier: MIT +// +// This software is distributed under the MIT license, +// the text of which is available at https://opensource.org/license/MIT/ +// or see the "LICENSE" file for more details. +// +// Software description: Android library of reusable graphical components +// + +// Orange Compact brand tokens version 2.5.0 +// Generated by Tokenator + +package com.orange.ouds.theme.orangecompact.tokens.components + +import androidx.compose.ui.graphics.Color +import com.orange.ouds.theme.tokens.OudsColorKeyToken +import com.orange.ouds.theme.tokens.OudsLightDarkColorKeyToken +import com.orange.ouds.theme.tokens.components.OudsLightDarkColor +import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorMonoTokens +import com.orange.ouds.tokens.raw.OudsColorRawTokens + +internal data class OrangeCompactProgressIndicatorMonoTokens( + override val colorContentIndicator: OudsColorKeyToken = OudsLightDarkColorKeyToken(OudsColorKeyToken.Repository.Neutral.Emphasized.Black, OudsColorKeyToken.Repository.Neutral.Muted.White), + override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor(OudsColorRawTokens.ColorFunctionalGrayLight400, OudsColorRawTokens.ColorFunctionalGrayDark480) +) : OudsProgressIndicatorMonoTokens diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorTokens.kt b/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorTokens.kt index 4aee34987d..177cd2151d 100644 --- a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorTokens.kt +++ b/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorTokens.kt @@ -15,6 +15,7 @@ package com.orange.ouds.theme.orangecompact.tokens.components +import androidx.compose.ui.graphics.Color import com.orange.ouds.theme.tokens.OudsBorderKeyToken import com.orange.ouds.theme.tokens.OudsSpaceKeyToken import com.orange.ouds.theme.tokens.components.OudsLightDarkColor @@ -23,12 +24,9 @@ import com.orange.ouds.tokens.raw.OudsColorRawTokens import com.orange.ouds.tokens.raw.OudsDimensionRawTokens internal data class OrangeCompactProgressIndicatorTokens( - override val borderRadiusDefault: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Default, + override val borderRadiusDefault: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.None, override val borderRadiusRounded: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, - override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor( - OudsColorRawTokens.ColorFunctionalGrayLight400, - OudsColorRawTokens.ColorFunctionalGrayDark480 - ), + override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor(OudsColorRawTokens.ColorFunctionalGrayLight400, OudsColorRawTokens.ColorFunctionalGrayDark480), override val sizeLinearIndicatorHeight: Float = OudsDimensionRawTokens.Dimension50, override val spacePaddingBlock: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.ExtraSmall ) : OudsProgressIndicatorTokens diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSizeSemanticTokens.kt b/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSizeSemanticTokens.kt index 9a0d487762..9904512cdd 100644 --- a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSizeSemanticTokens.kt +++ b/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSizeSemanticTokens.kt @@ -115,5 +115,7 @@ internal data class OrangeCompactSizeSemanticTokens( override val maxWidthLabelSmallTablet: Float = OudsDimensionRawTokens.Dimension6000, override val maxWidthLabelXlargeMobile: Float = OudsDimensionRawTokens.Dimension6000, override val maxWidthLabelXlargeTablet: Float = OudsDimensionRawTokens.Dimension6000, - override val minInteractiveArea: Float = OudsDimensionRawTokens.Dimension500 + override val minInteractiveArea: Float = OudsDimensionRawTokens.Dimension500, + override val minInteractiveAreaDefault: Float = OudsDimensionRawTokens.Dimension500, + override val minInteractiveAreaSmall: Float = OudsDimensionRawTokens.Dimension450 ) : OudsSizeSemanticTokens diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png index 82083ab434..744f1c3279 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png index fe318a489c..032536d26b 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png index 16757e43f4..fd27623aa6 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png index a6cbfe4601..40c2e34746 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png index 599886adf1..83e70c2adb 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png index 6da3fc3ffd..b93aa93427 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png index 049820f508..1580eb0e72 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png index d134062b2a..12ff9d6e6c 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png index 001fd78c93..4873848547 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png index 36f5206783..4b9d4179e5 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png index 9f036c154a..c9995ec1e8 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png index 805dd44c04..fe1880e7d3 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png index 38a8d8a92f..6cceb7a6da 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png index 057a44c706..a4fc58cdd4 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png index ed791729c8..7ed3c9d5e8 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png index b47f31c52e..cc071bad04 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png index ea158586b2..e1a3546fed 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png index 7aac957c88..c3e3ca81e8 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png index 2419480910..60789f6331 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png index bc71db5260..ec4c302722 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png index c1605ef30b..329b736f59 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png index a94f7e70e4..fcba56992e 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png index 281ce1a722..ddd39501e4 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png index b71bfca0e6..59aeba147e 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png index 90805c065a..c984fe99f0 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png index 161ed34c0f..0930f26c1b 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png index 7c5e5368d4..2c1665e5cf 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png index fe318a489c..032536d26b 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png index 16757e43f4..fd27623aa6 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png index 282e4f0a3f..a774d4af46 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png index c0fb568071..69bb99fb87 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png index f014757019..84dc59486c 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png index 247583faed..dccb125a0f 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png index 88fc03d776..a0854d5257 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png index cd03eacea3..b75f2d63e7 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png index 5f3a97bfa5..ac426455d2 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png index 9f036c154a..c9995ec1e8 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png index 805dd44c04..fe1880e7d3 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png index 38a8d8a92f..6cceb7a6da 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png index d7d3e2b3a9..6dfd0f07a2 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png index 67e48f3bf7..51f4851f39 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png index 87e0877945..27919c34d7 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png index ea158586b2..e1a3546fed 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png index 7aac957c88..c3e3ca81e8 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png index 33bd1b35b0..f654943fd0 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png index bc71db5260..ec4c302722 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png index c1605ef30b..329b736f59 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png index a94f7e70e4..fcba56992e 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png index 37025113bc..8a5db2b4da 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png index 530229decb..e5c3809558 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png index 678fb5e294..8616325e18 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png index 161ed34c0f..0930f26c1b 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png index b6e5853ed8..04f1a39d97 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png index 283f8774b1..0bf58cc9d5 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png index c2f388c2ef..b2f441b9cd 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png index c9701432e5..b7fb06fd16 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png index 46dc14365b..61aa6ecee4 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png new file mode 100644 index 0000000000..5885cc5a49 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png new file mode 100644 index 0000000000..5885cc5a49 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000..6518789aab Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png new file mode 100644 index 0000000000..8a767e6025 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png index 9b77cc6385..f3ed5c5aa5 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png index 03f5b37b7e..c538506edf 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png index 03d54411ae..93444021ed 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png index 92c88d5a85..14280521c6 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png index 49829d4885..383f03dade 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png index 0d1d76873a..218ed9c726 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png index 83d98c7393..e5db1820db 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png index d76d762127..bb8376f5f6 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png index c9aa7a1776..e1c7e68b1b 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png index 4855a14374..9f0e7f3292 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png index 63f9f7d118..fef19212cc 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png index 42294af171..48bc34b862 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png index af9fc89fe8..dea4f424f6 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png index c376490388..1637c330b8 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png index f28a3f4092..991c5cf748 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png index 6989142904..91f1095c1d 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png index def26d2cfa..715a65bd77 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png index bc624a0b6d..7ed90a8f39 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png index 831698d039..05300e94cc 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png index 85ee15e973..be838ec0b6 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png index 7e496983e3..60e55cce0e 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png index faccda414d..b73dd1f2ad 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png index 2d33b5335d..43233d7bda 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png index 07424c66ea..ff17f61fe8 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png index 4bf2d99ee7..6fe36c80fc 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png index 95567c6929..d067a2f793 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png index 2d744d3eb3..dcf252168e 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png index 131e4b5fc6..6b9bc4f0f5 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png index 2b2ac56783..0fe1f80359 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png index 222ebee254..2d418abfb8 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png index 15a4e2f97b..b1cdd263f5 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png index b3f80133a9..4343eda014 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png index 1b6d3aab5d..d2032a4d55 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png index a616b9f41d..679c757f4a 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png index e8383e0a47..1bb2847d7d 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png index 7f6ef7e699..4fda28edb5 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png index a9c1ac92ff..102ee9fba0 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png index e989c11cd9..ad7b19eb45 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png index 165c8769b1..34fafe0e49 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png index 5bfa140d3e..0e2b6052b9 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png index 7c015990af..a4d1e21b33 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png index c4be97c165..b90971874e 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png index edc7a0b8a9..e67981b4ee 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png index 3f73819e6d..712593421b 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png index 81d92f51e2..92dbae89c6 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png index 01aafa5a38..0122378f53 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png index f0f365e473..19be29c85f 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png index 47ba528884..035350dfaf 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png index e587e08885..77aed13bf0 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png index f9bfe86b44..bc1071f9e3 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png index ad0ba7dc0e..5511c06b31 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png index 031a455e95..cfc23bb000 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png index 49ce27f498..efb78928a8 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png index 83f99578a3..0bb70d793f 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png index 83d8c6684d..fa21acdbf0 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png index feff43f270..9c4ac7acd0 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png index c31f58c878..981b25d58f 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png index 30ae1bb097..b9c23ad0ed 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png index b5f27c7ee1..ebbedf94a3 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png index 67bd8bce57..fc8d4020d3 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png index 6bea327df6..b5533f519e 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png index 3605065545..b6fa99b170 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png index 8319788774..20d83c3675 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png index c0ed50595d..74e43a83dd 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png index 83b4125c77..bee4d7b976 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png index 1bde79a5c2..701d1295d8 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png index 0eb0d891b5..6b8f9db750 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png index ebd9c650b3..1a5bc0f796 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png index f279db4f39..58d88971f7 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png index c4ea3bddd3..5398e8a158 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png index 379293067a..620c5f074f 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png index ffc286e321..bb27e84fa2 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png index c16275439c..56edfdaae0 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png index a65720b518..00dffc8ba0 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png index 1eb758a9cd..a2a57dd220 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png index aedcde85f5..e84e02a6a1 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png index 9788e90309..a30ed7d2a9 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png index f9bfe86b44..bc1071f9e3 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png index ad0ba7dc0e..5511c06b31 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png index a69d42540d..32d8359d44 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png index f82463dc7d..3e241d84ee 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png index 83f99578a3..0bb70d793f 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png index 83d8c6684d..fa21acdbf0 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png index 3ae34cfc5a..726d466c1c 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png index 31194dd480..2cb5e989fb 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png index 9d66881705..3d626c89d3 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png index d1edc4daca..a641e2fb6b 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png index d9f0d460b3..304f8da2c7 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png index 850b48e830..fa616adb40 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png index d57fda611c..ee3cb86dbb 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png index 8319788774..20d83c3675 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png index c0ed50595d..74e43a83dd 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png index 449850e82f..ca7c490642 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png index 332d891a10..2fc0176691 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png index 0eb0d891b5..6b8f9db750 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png index ebd9c650b3..1a5bc0f796 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png index f279db4f39..58d88971f7 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png index c4ea3bddd3..5398e8a158 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png index 72ecb7dc2b..ea3855b1a4 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png index ad0755f978..95639daba8 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png index c16275439c..56edfdaae0 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png index a65720b518..00dffc8ba0 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png index 3ba320eb62..be3079b557 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png index f97b826153..4deb96163f 100644 Binary files a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..264b5953b0 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png new file mode 100644 index 0000000000..287b95ea2a Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png new file mode 100644 index 0000000000..ca9e60ea4f Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png new file mode 100644 index 0000000000..c25df5ab71 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png new file mode 100644 index 0000000000..17d9bb7169 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png new file mode 100644 index 0000000000..a18cc70c30 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png new file mode 100644 index 0000000000..c1ceb7e56a Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png new file mode 100644 index 0000000000..e1a3546fed Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png new file mode 100644 index 0000000000..e1a3546fed Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png new file mode 100644 index 0000000000..5b40003dce Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png new file mode 100644 index 0000000000..a7f6ca6843 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png new file mode 100644 index 0000000000..1b71fdea66 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png new file mode 100644 index 0000000000..0a98919daf Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png new file mode 100644 index 0000000000..7b5a501689 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png new file mode 100644 index 0000000000..f8180174b7 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png new file mode 100644 index 0000000000..37977eda9f Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png new file mode 100644 index 0000000000..6290ef55ea Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png new file mode 100644 index 0000000000..c3d407b831 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png new file mode 100644 index 0000000000..40503de43c Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png new file mode 100644 index 0000000000..766b643da8 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png new file mode 100644 index 0000000000..e1a3546fed Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png new file mode 100644 index 0000000000..70ccd22fda Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png new file mode 100644 index 0000000000..5b40003dce Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png new file mode 100644 index 0000000000..f6e6e44631 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png new file mode 100644 index 0000000000..384d26e49c Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png new file mode 100644 index 0000000000..34c554d8ec Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png new file mode 100644 index 0000000000..34a37467ea Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png new file mode 100644 index 0000000000..67c88cec7a Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png new file mode 100644 index 0000000000..cb8b066fcf Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png new file mode 100644 index 0000000000..b8803521e8 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png new file mode 100644 index 0000000000..ba1c17a082 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000..557af17d9d Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png new file mode 100644 index 0000000000..ca9e60ea4f Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png new file mode 100644 index 0000000000..c25df5ab71 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png new file mode 100644 index 0000000000..c0da9348cd Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png new file mode 100644 index 0000000000..96affbdd7a Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png new file mode 100644 index 0000000000..617c69a104 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png new file mode 100644 index 0000000000..e1a3546fed Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png new file mode 100644 index 0000000000..e1a3546fed Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png new file mode 100644 index 0000000000..5b40003dce Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png new file mode 100644 index 0000000000..f2c989c8cc Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png new file mode 100644 index 0000000000..144bb2db8b Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png new file mode 100644 index 0000000000..e5694a530d Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png new file mode 100644 index 0000000000..07802e127d Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png new file mode 100644 index 0000000000..f8180174b7 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png new file mode 100644 index 0000000000..37977eda9f Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png new file mode 100644 index 0000000000..6290ef55ea Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png new file mode 100644 index 0000000000..aa18be830b Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png new file mode 100644 index 0000000000..1f84156c59 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png new file mode 100644 index 0000000000..15809abac2 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png new file mode 100644 index 0000000000..e1a3546fed Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png new file mode 100644 index 0000000000..70ccd22fda Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png new file mode 100644 index 0000000000..5b40003dce Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png new file mode 100644 index 0000000000..6b25a8b9e2 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png new file mode 100644 index 0000000000..384d26e49c Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png new file mode 100644 index 0000000000..34c554d8ec Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png new file mode 100644 index 0000000000..34a37467ea Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png new file mode 100644 index 0000000000..33d6a95a28 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png new file mode 100644 index 0000000000..8c28555c00 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png new file mode 100644 index 0000000000..e6a4f6a8d5 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png new file mode 100644 index 0000000000..ba1c17a082 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..c1f91d170a Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..4c898b1464 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..c9535f46e7 Binary files /dev/null and b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png differ diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeButtonTokens.kt b/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeButtonTokens.kt index c8bba452ea..93ab6f1e3d 100644 --- a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeButtonTokens.kt +++ b/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeButtonTokens.kt @@ -23,12 +23,21 @@ import com.orange.ouds.theme.tokens.OudsSpaceKeyToken import com.orange.ouds.theme.tokens.components.OudsButtonTokens internal data class OrangeButtonTokens( + override val borderRadiusAiIconOnly: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, override val borderRadiusDefault: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Default, override val borderRadiusRounded: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Medium, override val borderRadiusSocial: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, + override val borderWidthAi: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Default, + override val borderWidthAiInteraction: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Medium, override val borderWidthDefault: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Default, override val borderWidthDefaultInteraction: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Medium, override val borderWidthDefaultInteractionMono: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.None, + override val colorBgAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiFocus: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiHover: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiLoading: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiPressed: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBgBrandEnabled: OudsColorKeyToken = OudsColorKeyToken.Surface.Brand.Primary, override val colorBgBrandFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Focus, override val colorBgBrandHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, @@ -43,12 +52,24 @@ internal data class OrangeButtonTokens( override val colorBgMinimalFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Focus, override val colorBgMinimalHover: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Hover, override val colorBgMinimalPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Pressed, + override val colorBorderAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Action.Disabled, + override val colorBorderAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiFocus: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiHover: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiLoading: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiPressed: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBorderDefaultDisabled: OudsColorKeyToken = OudsColorKeyToken.Action.Disabled, override val colorBorderDefaultEnabled: OudsColorKeyToken = OudsColorKeyToken.Action.Enabled, override val colorBorderDefaultFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Focus, override val colorBorderDefaultHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, override val colorBorderDefaultLoading: OudsColorKeyToken = OudsColorKeyToken.Action.Loading, override val colorBorderDefaultPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Pressed, + override val colorContentAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Action.Disabled, + override val colorContentAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Action.Enabled, + override val colorContentAiFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Focus, + override val colorContentAiHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, + override val colorContentAiLoading: OudsColorKeyToken = OudsColorKeyToken.Action.Loading, + override val colorContentAiPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Pressed, override val colorContentBrandEnabled: OudsColorKeyToken = OudsColorKeyToken.Content.OnBrand.Primary, override val colorContentBrandFocus: OudsColorKeyToken = OudsColorKeyToken.Content.OnAction.Focus, override val colorContentBrandHover: OudsColorKeyToken = OudsColorKeyToken.Content.OnAction.Hover, @@ -66,21 +87,42 @@ internal data class OrangeButtonTokens( override val colorContentMinimalHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, override val colorContentMinimalLoading: OudsColorKeyToken = OudsColorKeyToken.Content.Default, override val colorContentMinimalPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Pressed, - override val sizeIcon: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, - override val sizeIconOnly: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeSmall, + override val sizeIconDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeIconOnlyDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeSmall, + override val sizeIconOnlySmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeIconSmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Medium.SizeSmall, + @Deprecated("") override val sizeLoader: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, - override val sizeMaxHeightIconOnly: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val sizeMinHeight: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val sizeMinWidth: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val spaceColumnGapChevron: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, - override val spaceColumnGapIcon: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.Small, - override val spaceColumnGapIconChevron: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, - override val spaceInsetIconOnly: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Medium, - override val spacePaddingBlock: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Medium, - override val spacePaddingInlineChevronEnd: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, - override val spacePaddingInlineChevronStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, - override val spacePaddingInlineEndIconStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, - override val spacePaddingInlineIconNone: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.FourExtraLarge, - override val spacePaddingInlineIconStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ExtraLarge, - override val spacePaddingInlineStartIconEnd: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge + override val sizeMaxWidthHeightIconOnlyDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMaxWidthHeightIconOnlySmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeMinHeightDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMinHeightSmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeMinWidthDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMinWidthSmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeProgressIndicatorDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeProgressIndicatorSmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Medium.SizeSmall, + override val spaceColumnGapChevronDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, + override val spaceColumnGapChevronSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, + override val spaceColumnGapIconChevronDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, + override val spaceColumnGapIconChevronSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ThreeExtraSmall, + override val spaceColumnGapIconDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.Small, + override val spaceColumnGapIconSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, + override val spaceInsetIconOnlyDefault: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Medium, + override val spaceInsetIconOnlySmall: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Small, + override val spaceInsetProgressIndicartorOnlyDefault: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.FourExtraSmall, + override val spaceInsetProgressIndicartorOnlySmall: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.FourExtraSmall, + override val spacePaddingBlockDefault: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Medium, + override val spacePaddingBlockSmall: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Small, + override val spacePaddingInlineChevronEndDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineChevronEndSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Medium, + override val spacePaddingInlineChevronStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineChevronStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Medium, + override val spacePaddingInlineEndIconStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, + override val spacePaddingInlineEndIconStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge, + override val spacePaddingInlineIconNoneDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.FourExtraLarge, + override val spacePaddingInlineIconNoneSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge, + override val spacePaddingInlineIconStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ExtraLarge, + override val spacePaddingInlineIconStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineStartIconEndDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, + override val spacePaddingInlineStartIconEndSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge ) : OudsButtonTokens diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeComponentsTokens.kt b/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeComponentsTokens.kt index dbbf030014..15e7e37733 100644 --- a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeComponentsTokens.kt +++ b/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeComponentsTokens.kt @@ -28,6 +28,7 @@ import com.orange.ouds.theme.tokens.components.OudsInputTagTokens import com.orange.ouds.theme.tokens.components.OudsLinkMonoTokens import com.orange.ouds.theme.tokens.components.OudsLinkTokens import com.orange.ouds.theme.tokens.components.OudsPinCodeInputTokens +import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorMonoTokens import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorTokens import com.orange.ouds.theme.tokens.components.OudsRadioButtonTokens import com.orange.ouds.theme.tokens.components.OudsSwitchTokens @@ -52,6 +53,7 @@ internal data class OrangeComponentsTokens( override val linkMonochrome: OudsLinkMonoTokens = OrangeLinkMonoTokens(), override val pinCodeInput: OudsPinCodeInputTokens = OrangePinCodeInputTokens(), override val progressIndicator: OudsProgressIndicatorTokens = OrangeProgressIndicatorTokens(), + override val progressIndicatorMonochrome: OudsProgressIndicatorMonoTokens = OrangeProgressIndicatorMonoTokens(), override val radioButton: OudsRadioButtonTokens = OrangeRadioButtonTokens(), override val switch: OudsSwitchTokens = OrangeSwitchTokens(), override val tag: OudsTagTokens = OrangeTagTokens(), diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorMonoTokens.kt b/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorMonoTokens.kt new file mode 100644 index 0000000000..ddacc79225 --- /dev/null +++ b/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorMonoTokens.kt @@ -0,0 +1,28 @@ +// +// Software Name: OUDS Android +// SPDX-FileCopyrightText: Copyright (c) Orange SA +// SPDX-License-Identifier: MIT +// +// This software is distributed under the MIT license, +// the text of which is available at https://opensource.org/license/MIT/ +// or see the "LICENSE" file for more details. +// +// Software description: Android library of reusable graphical components +// + +// Orange brand tokens version 2.5.0 +// Generated by Tokenator + +package com.orange.ouds.theme.orange.tokens.components + +import androidx.compose.ui.graphics.Color +import com.orange.ouds.theme.tokens.OudsColorKeyToken +import com.orange.ouds.theme.tokens.OudsLightDarkColorKeyToken +import com.orange.ouds.theme.tokens.components.OudsLightDarkColor +import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorMonoTokens +import com.orange.ouds.tokens.raw.OudsColorRawTokens + +internal data class OrangeProgressIndicatorMonoTokens( + override val colorContentIndicator: OudsColorKeyToken = OudsLightDarkColorKeyToken(OudsColorKeyToken.Repository.Neutral.Emphasized.Black, OudsColorKeyToken.Repository.Neutral.Muted.White), + override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor(OudsColorRawTokens.ColorFunctionalGrayLight400, OudsColorRawTokens.ColorFunctionalGrayDark480) +) : OudsProgressIndicatorMonoTokens diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorTokens.kt b/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorTokens.kt index f380938b51..964ffa8cf6 100644 --- a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorTokens.kt +++ b/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorTokens.kt @@ -15,6 +15,7 @@ package com.orange.ouds.theme.orange.tokens.components +import androidx.compose.ui.graphics.Color import com.orange.ouds.theme.tokens.OudsBorderKeyToken import com.orange.ouds.theme.tokens.OudsSpaceKeyToken import com.orange.ouds.theme.tokens.components.OudsLightDarkColor @@ -23,12 +24,9 @@ import com.orange.ouds.tokens.raw.OudsColorRawTokens import com.orange.ouds.tokens.raw.OudsDimensionRawTokens internal data class OrangeProgressIndicatorTokens( - override val borderRadiusDefault: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Default, + override val borderRadiusDefault: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.None, override val borderRadiusRounded: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, - override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor( - OudsColorRawTokens.ColorFunctionalGrayLight400, - OudsColorRawTokens.ColorFunctionalGrayDark480 - ), + override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor(OudsColorRawTokens.ColorFunctionalGrayLight400, OudsColorRawTokens.ColorFunctionalGrayDark480), override val sizeLinearIndicatorHeight: Float = OudsDimensionRawTokens.Dimension50, override val spacePaddingBlock: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.ExtraSmall ) : OudsProgressIndicatorTokens diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeSizeSemanticTokens.kt b/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeSizeSemanticTokens.kt index 650641885f..2955967027 100644 --- a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeSizeSemanticTokens.kt +++ b/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeSizeSemanticTokens.kt @@ -115,5 +115,7 @@ internal data class OrangeSizeSemanticTokens( override val maxWidthLabelSmallTablet: Float = OudsDimensionRawTokens.Dimension6000, override val maxWidthLabelXlargeMobile: Float = OudsDimensionRawTokens.Dimension6000, override val maxWidthLabelXlargeTablet: Float = OudsDimensionRawTokens.Dimension6000, - override val minInteractiveArea: Float = OudsDimensionRawTokens.Dimension600 + override val minInteractiveArea: Float = OudsDimensionRawTokens.Dimension600, + override val minInteractiveAreaDefault: Float = OudsDimensionRawTokens.Dimension600, + override val minInteractiveAreaSmall: Float = OudsDimensionRawTokens.Dimension500 ) : OudsSizeSemanticTokens diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png index ced36db340..819708ed9f 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png index 82ca886b5d..f4215c1bf0 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png index 48746f6cdd..80868ae884 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png index 241f0e18e8..ac8efa1853 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png index 1116568fa5..efee46de98 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png index a692466b4e..5e7e3f6374 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png index 962f9998e2..16c0f43191 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png index c0b5f3a495..296a475a9c 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png index f778a80df7..43b01f2c6f 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png index 92db73d61d..d43701baea 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png index 5a3a0c56cc..4dc10f10e2 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png index 41cac187dd..00575e93f6 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png index 5152923484..435b0e76da 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png index 14719dc238..9d83041031 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png index 5ce49e1ac6..5bb1937c35 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png index 64ad45173c..b5d43c67b0 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png index 092323c453..e76e7bcbe6 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png index 2037538193..2c62d89fa9 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png index 391e4a09b9..f7a6d9c7b0 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png index 63d454a925..38398d6d80 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png index 684ad66d73..a270d35d2d 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png index 97f2a666fb..af74a16b97 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png index 9d7f299291..dd9581412c 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png index 48edf1fc33..43d60eab6e 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png index 011f7e26ad..6974db56a8 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png index 82ca886b5d..f4215c1bf0 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png index 48746f6cdd..80868ae884 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png index 853c48e071..01d6f1b698 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png index 3678ca4929..fa908fc558 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png index c9fd5eaf21..f929f2e4be 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png index d2a8613886..5d7046e7c1 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png index 1772e2a77c..d5573d3038 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png index 982e37a488..d6f2d06ac6 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png index 0c74a0d658..a5ee5df2d2 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png index 5a3a0c56cc..4dc10f10e2 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png index 41cac187dd..00575e93f6 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png index 5152923484..435b0e76da 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png index f8e8422278..602e6ac966 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png index 4c97c2bc8c..81fad420e5 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png index 09114fe80a..b99aec0e58 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png index 3c226ae7ad..d2f95c5212 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png index 2037538193..2c62d89fa9 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png index 391e4a09b9..f7a6d9c7b0 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png index 63d454a925..38398d6d80 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png index 0f76b292db..026db2e3f2 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png index 126d3b14b5..543eb2048e 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png index c6934e1ca4..b2e9a6f4ed 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png index 48edf1fc33..43d60eab6e 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png index ed2eb6e39c..9f8a6a6c80 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png index 334d08ccb8..b8df85b916 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png index dbe7c21993..fb84dbf8ab 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png index 8fc157bc21..fabaa43f33 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png rename to theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png rename to theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png rename to theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png new file mode 100644 index 0000000000..5885cc5a49 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000..4ab98975b1 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png rename to theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png rename to theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png new file mode 100644 index 0000000000..5885cc5a49 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000..6518789aab Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[1].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[1].png new file mode 100644 index 0000000000..4ab98975b1 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[1].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png new file mode 100644 index 0000000000..8a767e6025 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png index fc1f5f5368..73471c4a64 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png index a7d1d2d4ee..8d2b49f6ed 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png index 41e182f86c..bbd0291f8e 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png index 66f7368fc6..08b0da3dc2 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png index 1b207822fa..3e33c1a672 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png index 0af32d396e..12226d67e0 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png index 49a408bf5f..1915909dd0 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png index a21a7f60c4..6b948f2aa2 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png index d280ee181f..03eb0a7be7 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png index 5dd5b4e9eb..cbc552f181 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png index aebb8aed33..84bf5c99b5 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png index 2a8f7b6452..5f01c9733b 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png index 32ce9f5d71..f3bd5df133 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png index 99e9fe7b86..8c7210de96 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png index d320dfb6ee..5862faa2d5 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png index 2ba3ed4734..adbbdbcbf2 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png index a2886e0579..cfd0122a20 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png index 6ea924ab47..bdcb953a56 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png index efa082d843..f77249a816 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png index a293008e89..6a8046d93b 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png index 3ef60a685d..4ae541ff1f 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png index de556b707d..fc5dc88d78 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png index 322507c023..1ceb6d6b97 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png index 5c42d4d674..80115b1183 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png index 1f76a67495..fcfec3b895 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png index b4329907d2..85a2062066 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png index 8054e0f77d..c3ba27a10f 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png index 18bd418965..b2dea42b2b 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png index d09308a902..708c64123f 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png index a7d1d2d4ee..8d2b49f6ed 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png index 41e182f86c..bbd0291f8e 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png index a618f799a5..0ba6308f9d 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png index 75c7625e7e..8350d088ad 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png index 0af32d396e..12226d67e0 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png index 49a408bf5f..1915909dd0 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png index 3950ac9231..fc5f25d1db 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png index 25cd7fd3e7..b2dc9528bf 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png index a750b4b02d..c7cd990938 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png index fc67f7390e..b8df46137f 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png index ae495fecab..87a42b433e 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png index 642121e7ff..eedf583e7e 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png index 6309ae8f6f..8e098e7dad 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png index d320dfb6ee..5862faa2d5 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png index 2ba3ed4734..adbbdbcbf2 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png index e399e16610..7032c02e6d 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png index 6b4881a0f7..ab0b8d43c1 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png index efa082d843..f77249a816 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png index a293008e89..6a8046d93b 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png index 3ef60a685d..4ae541ff1f 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png index de556b707d..fc5dc88d78 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png index e1321cbbc3..126f32fdcf 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png index c01a862b47..40ddecf0e2 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png index 1f76a67495..fcfec3b895 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png index b4329907d2..85a2062066 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png index fce0c287f5..083bc123d5 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png index 476f2f0790..8ddf492c53 100644 Binary files a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..97722fe2b4 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png new file mode 100644 index 0000000000..b5387586eb Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png new file mode 100644 index 0000000000..29bac818e2 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png new file mode 100644 index 0000000000..fd27623aa6 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png new file mode 100644 index 0000000000..4b8083a0ca Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png new file mode 100644 index 0000000000..4e3a2be041 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png new file mode 100644 index 0000000000..c739377352 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png new file mode 100644 index 0000000000..e1a3546fed Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png new file mode 100644 index 0000000000..8230eb0a24 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png new file mode 100644 index 0000000000..5b40003dce Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png new file mode 100644 index 0000000000..e67f2271f6 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png new file mode 100644 index 0000000000..e288b5a247 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png new file mode 100644 index 0000000000..078d39338e Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png new file mode 100644 index 0000000000..dc49b15671 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png new file mode 100644 index 0000000000..fb7714d461 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png new file mode 100644 index 0000000000..a7c38bf93d Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png new file mode 100644 index 0000000000..6cceb7a6da Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png new file mode 100644 index 0000000000..f4e7fe2fe9 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png new file mode 100644 index 0000000000..ef1cdb8ec9 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png new file mode 100644 index 0000000000..d90d522d11 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png new file mode 100644 index 0000000000..ea158586b2 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png new file mode 100644 index 0000000000..f6594c58ac Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png new file mode 100644 index 0000000000..5b40003dce Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png new file mode 100644 index 0000000000..256802bdf9 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png new file mode 100644 index 0000000000..c01008f128 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png new file mode 100644 index 0000000000..1a8dd7af0f Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png new file mode 100644 index 0000000000..fcba56992e Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png new file mode 100644 index 0000000000..62fda28d8d Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png new file mode 100644 index 0000000000..dad5440abf Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png new file mode 100644 index 0000000000..1903d80513 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png new file mode 100644 index 0000000000..dd463a99be Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000..34aa8b4113 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png new file mode 100644 index 0000000000..29bac818e2 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png new file mode 100644 index 0000000000..fd27623aa6 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png new file mode 100644 index 0000000000..0705164290 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png new file mode 100644 index 0000000000..5e1710ee11 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png new file mode 100644 index 0000000000..84dc59486c Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png new file mode 100644 index 0000000000..e1a3546fed Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png new file mode 100644 index 0000000000..8230eb0a24 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png new file mode 100644 index 0000000000..5b40003dce Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png new file mode 100644 index 0000000000..e2c8378357 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png new file mode 100644 index 0000000000..cec6a39927 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png new file mode 100644 index 0000000000..6053d23a5b Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png new file mode 100644 index 0000000000..ac426455d2 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png new file mode 100644 index 0000000000..fb7714d461 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png new file mode 100644 index 0000000000..a7c38bf93d Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png new file mode 100644 index 0000000000..6cceb7a6da Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png new file mode 100644 index 0000000000..677024c8f0 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png new file mode 100644 index 0000000000..c7bd705a3b Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png new file mode 100644 index 0000000000..27919c34d7 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png new file mode 100644 index 0000000000..ea158586b2 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png new file mode 100644 index 0000000000..f6594c58ac Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png new file mode 100644 index 0000000000..5b40003dce Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png new file mode 100644 index 0000000000..f654943fd0 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png new file mode 100644 index 0000000000..c01008f128 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png new file mode 100644 index 0000000000..1a8dd7af0f Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png new file mode 100644 index 0000000000..fcba56992e Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png new file mode 100644 index 0000000000..83318130ad Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png new file mode 100644 index 0000000000..85cf928e1a Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png new file mode 100644 index 0000000000..8616325e18 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png new file mode 100644 index 0000000000..dd463a99be Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..6eeac16765 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..f37fd4e4f5 Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..b633a4061d Binary files /dev/null and b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png differ diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshButtonTokens.kt b/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshButtonTokens.kt index e5d3513308..cd106478b2 100644 --- a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshButtonTokens.kt +++ b/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshButtonTokens.kt @@ -23,12 +23,21 @@ import com.orange.ouds.theme.tokens.OudsSpaceKeyToken import com.orange.ouds.theme.tokens.components.OudsButtonTokens internal data class SoshButtonTokens( + override val borderRadiusAiIconOnly: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, override val borderRadiusDefault: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Default, override val borderRadiusRounded: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Default, override val borderRadiusSocial: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, + override val borderWidthAi: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Default, + override val borderWidthAiInteraction: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Default, override val borderWidthDefault: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Default, override val borderWidthDefaultInteraction: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Default, override val borderWidthDefaultInteractionMono: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.None, + override val colorBgAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiFocus: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiHover: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiLoading: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiPressed: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBgBrandEnabled: OudsColorKeyToken = OudsLightDarkColorKeyToken(OudsColorKeyToken.Surface.Brand.Secondary, OudsColorKeyToken.Surface.Brand.Tertiary), override val colorBgBrandFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Focus, override val colorBgBrandHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, @@ -43,12 +52,24 @@ internal data class SoshButtonTokens( override val colorBgMinimalFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Focus, override val colorBgMinimalHover: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Hover, override val colorBgMinimalPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Pressed, + override val colorBorderAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Action.Disabled, + override val colorBorderAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiFocus: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiHover: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiLoading: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiPressed: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBorderDefaultDisabled: OudsColorKeyToken = OudsColorKeyToken.Action.Disabled, override val colorBorderDefaultEnabled: OudsColorKeyToken = OudsColorKeyToken.Action.Enabled, override val colorBorderDefaultFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Focus, override val colorBorderDefaultHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, override val colorBorderDefaultLoading: OudsColorKeyToken = OudsColorKeyToken.Action.Loading, override val colorBorderDefaultPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Pressed, + override val colorContentAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Action.Disabled, + override val colorContentAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Action.Enabled, + override val colorContentAiFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Focus, + override val colorContentAiHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, + override val colorContentAiLoading: OudsColorKeyToken = OudsColorKeyToken.Action.Loading, + override val colorContentAiPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Pressed, override val colorContentBrandEnabled: OudsColorKeyToken = OudsColorKeyToken.Content.OnBrand.Secondary, override val colorContentBrandFocus: OudsColorKeyToken = OudsColorKeyToken.Content.OnAction.Focus, override val colorContentBrandHover: OudsColorKeyToken = OudsColorKeyToken.Content.OnAction.Hover, @@ -66,21 +87,42 @@ internal data class SoshButtonTokens( override val colorContentMinimalHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, override val colorContentMinimalLoading: OudsColorKeyToken = OudsColorKeyToken.Action.Loading, override val colorContentMinimalPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Pressed, - override val sizeIcon: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, - override val sizeIconOnly: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeSmall, + override val sizeIconDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeIconOnlyDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeSmall, + override val sizeIconOnlySmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeIconSmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Medium.SizeSmall, + @Deprecated("") override val sizeLoader: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, - override val sizeMaxHeightIconOnly: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val sizeMinHeight: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val sizeMinWidth: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val spaceColumnGapChevron: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, - override val spaceColumnGapIcon: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.Small, - override val spaceColumnGapIconChevron: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, - override val spaceInsetIconOnly: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Medium, - override val spacePaddingBlock: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Medium, - override val spacePaddingInlineChevronEnd: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, - override val spacePaddingInlineChevronStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, - override val spacePaddingInlineEndIconStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, - override val spacePaddingInlineIconNone: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.FourExtraLarge, - override val spacePaddingInlineIconStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ExtraLarge, - override val spacePaddingInlineStartIconEnd: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge + override val sizeMaxWidthHeightIconOnlyDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMaxWidthHeightIconOnlySmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeMinHeightDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMinHeightSmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeMinWidthDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMinWidthSmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeProgressIndicatorDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeProgressIndicatorSmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Medium.SizeSmall, + override val spaceColumnGapChevronDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, + override val spaceColumnGapChevronSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, + override val spaceColumnGapIconChevronDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, + override val spaceColumnGapIconChevronSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ThreeExtraSmall, + override val spaceColumnGapIconDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.Small, + override val spaceColumnGapIconSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, + override val spaceInsetIconOnlyDefault: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Medium, + override val spaceInsetIconOnlySmall: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Small, + override val spaceInsetProgressIndicartorOnlyDefault: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.FourExtraSmall, + override val spaceInsetProgressIndicartorOnlySmall: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.FourExtraSmall, + override val spacePaddingBlockDefault: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Medium, + override val spacePaddingBlockSmall: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Small, + override val spacePaddingInlineChevronEndDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineChevronEndSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Medium, + override val spacePaddingInlineChevronStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineChevronStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Medium, + override val spacePaddingInlineEndIconStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, + override val spacePaddingInlineEndIconStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge, + override val spacePaddingInlineIconNoneDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.FourExtraLarge, + override val spacePaddingInlineIconNoneSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge, + override val spacePaddingInlineIconStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ExtraLarge, + override val spacePaddingInlineIconStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineStartIconEndDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, + override val spacePaddingInlineStartIconEndSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge ) : OudsButtonTokens diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshComponentsTokens.kt b/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshComponentsTokens.kt index 43057b2baa..a69e38376c 100644 --- a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshComponentsTokens.kt +++ b/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshComponentsTokens.kt @@ -28,6 +28,7 @@ import com.orange.ouds.theme.tokens.components.OudsInputTagTokens import com.orange.ouds.theme.tokens.components.OudsLinkMonoTokens import com.orange.ouds.theme.tokens.components.OudsLinkTokens import com.orange.ouds.theme.tokens.components.OudsPinCodeInputTokens +import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorMonoTokens import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorTokens import com.orange.ouds.theme.tokens.components.OudsRadioButtonTokens import com.orange.ouds.theme.tokens.components.OudsSwitchTokens @@ -52,6 +53,7 @@ internal data class SoshComponentsTokens( override val linkMonochrome: OudsLinkMonoTokens = SoshLinkMonoTokens(), override val pinCodeInput: OudsPinCodeInputTokens = SoshPinCodeInputTokens(), override val progressIndicator: OudsProgressIndicatorTokens = SoshProgressIndicatorTokens(), + override val progressIndicatorMonochrome: OudsProgressIndicatorMonoTokens = SoshProgressIndicatorMonoTokens(), override val radioButton: OudsRadioButtonTokens = SoshRadioButtonTokens(), override val switch: OudsSwitchTokens = SoshSwitchTokens(), override val tag: OudsTagTokens = SoshTagTokens(), diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorMonoTokens.kt b/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorMonoTokens.kt new file mode 100644 index 0000000000..61c08de0be --- /dev/null +++ b/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorMonoTokens.kt @@ -0,0 +1,28 @@ +// +// Software Name: OUDS Android +// SPDX-FileCopyrightText: Copyright (c) Orange SA +// SPDX-License-Identifier: MIT +// +// This software is distributed under the MIT license, +// the text of which is available at https://opensource.org/license/MIT/ +// or see the "LICENSE" file for more details. +// +// Software description: Android library of reusable graphical components +// + +// Sosh brand tokens version 2.5.0 +// Generated by Tokenator + +package com.orange.ouds.theme.sosh.tokens.components + +import androidx.compose.ui.graphics.Color +import com.orange.ouds.theme.tokens.OudsColorKeyToken +import com.orange.ouds.theme.tokens.OudsLightDarkColorKeyToken +import com.orange.ouds.theme.tokens.components.OudsLightDarkColor +import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorMonoTokens +import com.orange.ouds.tokens.raw.OudsColorRawTokens + +internal data class SoshProgressIndicatorMonoTokens( + override val colorContentIndicator: OudsColorKeyToken = OudsLightDarkColorKeyToken(OudsColorKeyToken.Repository.Neutral.Emphasized.Black, OudsColorKeyToken.Repository.Neutral.Muted.White), + override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor(OudsColorRawTokens.ColorFunctionalGrayLight400, OudsColorRawTokens.ColorFunctionalGrayDark480) +) : OudsProgressIndicatorMonoTokens diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorTokens.kt b/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorTokens.kt index 12f6d3718c..37929773ac 100644 --- a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorTokens.kt +++ b/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorTokens.kt @@ -15,6 +15,7 @@ package com.orange.ouds.theme.sosh.tokens.components +import androidx.compose.ui.graphics.Color import com.orange.ouds.theme.tokens.OudsBorderKeyToken import com.orange.ouds.theme.tokens.OudsSpaceKeyToken import com.orange.ouds.theme.tokens.components.OudsLightDarkColor @@ -25,10 +26,7 @@ import com.orange.ouds.tokens.raw.OudsDimensionRawTokens internal data class SoshProgressIndicatorTokens( override val borderRadiusDefault: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, override val borderRadiusRounded: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, - override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor( - OudsColorRawTokens.ColorFunctionalGrayLight400, - OudsColorRawTokens.ColorFunctionalGrayDark480 - ), + override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor(OudsColorRawTokens.ColorFunctionalGrayLight400, OudsColorRawTokens.ColorFunctionalGrayDark480), override val sizeLinearIndicatorHeight: Float = OudsDimensionRawTokens.Dimension50, override val spacePaddingBlock: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.ExtraSmall ) : OudsProgressIndicatorTokens diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshSizeSemanticTokens.kt b/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshSizeSemanticTokens.kt index c1faf03421..e258752e56 100644 --- a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshSizeSemanticTokens.kt +++ b/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshSizeSemanticTokens.kt @@ -115,5 +115,7 @@ internal data class SoshSizeSemanticTokens( override val maxWidthLabelSmallTablet: Float = OudsDimensionRawTokens.Dimension6000, override val maxWidthLabelXlargeMobile: Float = OudsDimensionRawTokens.Dimension6000, override val maxWidthLabelXlargeTablet: Float = OudsDimensionRawTokens.Dimension6000, - override val minInteractiveArea: Float = OudsDimensionRawTokens.Dimension600 + override val minInteractiveArea: Float = OudsDimensionRawTokens.Dimension600, + override val minInteractiveAreaDefault: Float = OudsDimensionRawTokens.Dimension600, + override val minInteractiveAreaSmall: Float = OudsDimensionRawTokens.Dimension500 ) : OudsSizeSemanticTokens diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png index 771f8ff114..db4ac0f4cb 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png index ee1c9e026d..fafae2c8e4 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png index 626657212f..63b7784f4a 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png index a4728ab6ae..c0922027c0 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png index e008ca14e6..7f68c9598b 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png index 257254ee6a..b7081cbdad 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png index 6eb339a355..633ea27222 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png index 140c35e1c3..371758c1eb 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png index 859599fc4d..5d3da6f027 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png index 1c7eb1712f..be4cf410b2 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png index f1fdd733cd..f2697ead85 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png index d7832fb301..000454c664 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png index 86f447badd..bb3bd18e4e 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png index a38da2b0f1..bc9c6d98b3 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png index d34e3c0645..3f2b7acbb2 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png index 8877548c34..b3361fc1af 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png index 0c28f411e7..71ffc314b0 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png index 0f095bec0a..1c7b19ec0b 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png index 33f75bebbd..6badcd0d95 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png index 38ffa297b6..1a744276de 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png index df2527317b..f47f05d7a0 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png index 775d247465..a893196d61 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png index bdfa5a2c12..f181d4c363 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png index 2db7f60b1e..60312471a9 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png index 1c26ed1e3f..c1fb6e71e6 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png index 01db3e22cc..bb2a6129a5 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png index c9973cb46f..0a87cbbb27 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png index a0cc124c20..06bb2f80bc 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png index 38179b221f..e14b3f1a82 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png index ddaf67b6ce..db50f6da15 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png index a0d8f3cfff..d338732f98 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png index 61800ef356..fbbfd6db13 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png index d026599dce..f4b114aeab 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png index afc71ebf90..54de18cd18 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png index 96296e83c1..b72f6dc57b 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png index 3ba480488b..668d9dede3 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png index 631c6d1b81..3f8a1fbdb4 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png index 899d85f480..41e2fcdd79 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png index d58798a755..4e02ba4b47 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png index d9d41dd8ec..655dca0d57 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png index dc99672400..709e5d77d7 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png index 172a4050b0..c7e8270d5c 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png index bb9cea57cd..6ce9c65bf7 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png index e95bc4109c..09dd5012c5 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png index cb5bd1ac36..5a22b31bb5 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png index 79f1b539cf..0678557cbe 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png index 0361c7b97f..04f32b0793 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png index 5b375e0719..a00e21164f 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png index e2fdd7260d..b8a00cf9bc 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png index 7f8ccf788d..3ef4851d9e 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png index d026599dce..f4b114aeab 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png index 8ae784c0aa..4cbf00f4f3 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png new file mode 100644 index 0000000000..bcd9cf720d Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png rename to theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png rename to theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png rename to theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png new file mode 100644 index 0000000000..d06f4b9802 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000..02a206a2c4 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[1].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[1].png new file mode 100644 index 0000000000..76ad5055dc Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[1].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png new file mode 100644 index 0000000000..8b1688d577 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png index adbb6884cb..c7743b7110 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png index 6f74795302..3498dc1c23 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png index 3f7cf6fc08..ee2355ceae 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png index e41e360feb..51e6473da0 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png index cab5c36187..f6fddeec08 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png index beda682c92..1c3a271570 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png index a677ce0fb4..9975dc2e76 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png index afe7f6c2e5..9233706d11 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png index d4561905e7..5d53cbb7ed 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png index 6fcf6a9be1..f61da48d2d 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png index f1cf5558f5..c80e161120 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png index 268c63e52a..ccd4fc3162 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png index 583ec1ffa6..906e2a8bc1 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png index fd64936329..84b4d2c6a4 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png index e8e3d73d25..256b9a4976 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png index 1d2a24bbff..1822f02eb2 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png index e0a802d2b5..f2dae89400 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png index 1ae4de52ef..10fb6ea13a 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png index f28c5d7177..adc635ef33 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png index ac87c1a5f6..1a8fd41e4e 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png index 6542ffaff0..6f56ddcfb2 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png index 84cda2b02b..1aa7e69e38 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png index fc1a72ca89..19a3c9394e 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png index c2fc1de0bf..f8c91527bd 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png index 6c93ba857a..674c172b6c 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png index b6ba94df23..9d7dfb77ce 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png index 36e26b979f..33deb098cd 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png index 4109e6fc60..5cf62442c7 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png index 6f7ab86d87..11036b9e51 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png index 5d2d7d3b4c..1166c24b16 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png index a5c8aaa69c..7f4a672b5e 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png index 9d48d4835a..2f18709a3d 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png index b146313f4c..e4d8a80213 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png index e97550d516..0490d37378 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png index e5105fe90d..1a606adf8e 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png index 2b034166c4..66a6645620 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png index 31dce66968..7f334426a2 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png index b782dce0a0..7dfd33a40d 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png index 60b8956547..865e604878 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png index f9a354326f..36443a01aa 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png index dcfd69e98a..4035bb67b7 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png index 41026b7d2d..92fa2bc804 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png index 713d1805d0..3ba532635f 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png index e8f9633677..621b11e60b 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png index 70f13517fe..3739e79bd5 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png index 6f12c0155f..c177940f83 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png index 577da0d07c..527cff0459 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png index 9d9575a550..d52f80c74e 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png index 3456710dcb..c4a4e19d9a 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png index efd6fe61bb..5c41cd5a30 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png index 78874af11f..5b1f745a0d 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png index aac296e206..cbe577d1ea 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png index 19a1b844a4..de4d92b382 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png index 164ddfc488..400b91c32a 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png index e3bc3e4c92..acf723236d 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png index e89a0e7533..c2f6a558dd 100644 Binary files a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..ffe482102a Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png new file mode 100644 index 0000000000..eb6bc5088e Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png new file mode 100644 index 0000000000..f97b36b25a Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png new file mode 100644 index 0000000000..48c5de1c08 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png new file mode 100644 index 0000000000..b1fc3e3e8d Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png new file mode 100644 index 0000000000..698e016e3a Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png new file mode 100644 index 0000000000..e22a954719 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png new file mode 100644 index 0000000000..ab43a57940 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png new file mode 100644 index 0000000000..d11458d60d Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png new file mode 100644 index 0000000000..c92d3d2188 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png new file mode 100644 index 0000000000..3cbed410a0 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png new file mode 100644 index 0000000000..0581af5c6b Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png new file mode 100644 index 0000000000..c0f408b779 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png new file mode 100644 index 0000000000..887a5f5ed3 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png new file mode 100644 index 0000000000..55543e7185 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png new file mode 100644 index 0000000000..c90805fd59 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png new file mode 100644 index 0000000000..c122daad9e Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png new file mode 100644 index 0000000000..0ffa5b370b Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png new file mode 100644 index 0000000000..a91159f8df Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png new file mode 100644 index 0000000000..8a99bf0d31 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png new file mode 100644 index 0000000000..595b7b7498 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png new file mode 100644 index 0000000000..03e6caac9b Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png new file mode 100644 index 0000000000..c92d3d2188 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png new file mode 100644 index 0000000000..17df417126 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png new file mode 100644 index 0000000000..45f930b92b Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png new file mode 100644 index 0000000000..8ec63376d1 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png new file mode 100644 index 0000000000..267743a7d6 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png new file mode 100644 index 0000000000..dce6a364bf Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png new file mode 100644 index 0000000000..d1c3670c84 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png new file mode 100644 index 0000000000..b187886410 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png new file mode 100644 index 0000000000..6cc1bda298 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000..a622ab9b0d Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png new file mode 100644 index 0000000000..25922080e6 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png new file mode 100644 index 0000000000..cb8f3361a5 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png new file mode 100644 index 0000000000..60b5369ce0 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png new file mode 100644 index 0000000000..47304714bc Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png new file mode 100644 index 0000000000..1ef6ef3eac Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png new file mode 100644 index 0000000000..87c7c5001c Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png new file mode 100644 index 0000000000..c8d005294b Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png new file mode 100644 index 0000000000..dcacfd3406 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png new file mode 100644 index 0000000000..6f06a7976c Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png new file mode 100644 index 0000000000..460f6fe1dd Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png new file mode 100644 index 0000000000..11ea0c4099 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png new file mode 100644 index 0000000000..958cd78a14 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png new file mode 100644 index 0000000000..8d1ba12dad Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png new file mode 100644 index 0000000000..3e55fdc382 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png new file mode 100644 index 0000000000..c5c5c6d46d Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png new file mode 100644 index 0000000000..fe4f63e38a Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png new file mode 100644 index 0000000000..21095bd113 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png new file mode 100644 index 0000000000..2ddfc55406 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png new file mode 100644 index 0000000000..0efd2bfd11 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png new file mode 100644 index 0000000000..be5ef34d9b Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png new file mode 100644 index 0000000000..dcacfd3406 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png new file mode 100644 index 0000000000..b9bf7cb493 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png new file mode 100644 index 0000000000..114e44ac6d Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png new file mode 100644 index 0000000000..ab094b3192 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png new file mode 100644 index 0000000000..c2c87a5de9 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png new file mode 100644 index 0000000000..c08c1f538c Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png new file mode 100644 index 0000000000..66380d6960 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png new file mode 100644 index 0000000000..1dcda134e3 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png new file mode 100644 index 0000000000..2ad985b1b4 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..adc1a4bb5b Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..11ea0c4099 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..6da57a9293 Binary files /dev/null and b/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png differ diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonTokens.kt b/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonTokens.kt index 26b3471e43..2f69f4d91e 100644 --- a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonTokens.kt +++ b/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonTokens.kt @@ -23,12 +23,21 @@ import com.orange.ouds.theme.tokens.OudsSpaceKeyToken import com.orange.ouds.theme.tokens.components.OudsButtonTokens internal data class WireframeButtonTokens( + override val borderRadiusAiIconOnly: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Default, override val borderRadiusDefault: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Default, override val borderRadiusRounded: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Default, override val borderRadiusSocial: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, + override val borderWidthAi: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Default, + override val borderWidthAiInteraction: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.Default, override val borderWidthDefault: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.None, override val borderWidthDefaultInteraction: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.None, override val borderWidthDefaultInteractionMono: OudsBorderKeyToken.Width = OudsBorderKeyToken.Width.None, + override val colorBgAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiFocus: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiHover: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiLoading: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBgAiPressed: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBgBrandEnabled: OudsColorKeyToken = OudsColorKeyToken.Surface.Brand.Secondary, override val colorBgBrandFocus: OudsColorKeyToken = OudsLightDarkColorKeyToken(OudsColorKeyToken.Repository.Secondary.High, OudsColorKeyToken.Repository.Secondary.Lower), override val colorBgBrandHover: OudsColorKeyToken = OudsLightDarkColorKeyToken(OudsColorKeyToken.Repository.Secondary.High, OudsColorKeyToken.Repository.Secondary.Lower), @@ -43,12 +52,24 @@ internal data class WireframeButtonTokens( override val colorBgMinimalFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Focus, override val colorBgMinimalHover: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Hover, override val colorBgMinimalPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Pressed, + override val colorBorderAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Action.Disabled, + override val colorBorderAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiFocus: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiHover: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiLoading: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorBorderAiPressed: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBorderDefaultDisabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBorderDefaultEnabled: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBorderDefaultFocus: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBorderDefaultHover: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBorderDefaultLoading: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, override val colorBorderDefaultPressed: OudsColorKeyToken = OudsColorKeyToken.Opacity.Transparent, + override val colorContentAiDisabled: OudsColorKeyToken = OudsColorKeyToken.Action.Disabled, + override val colorContentAiEnabled: OudsColorKeyToken = OudsColorKeyToken.Action.Enabled, + override val colorContentAiFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Focus, + override val colorContentAiHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, + override val colorContentAiLoading: OudsColorKeyToken = OudsColorKeyToken.Action.Loading, + override val colorContentAiPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Pressed, override val colorContentBrandEnabled: OudsColorKeyToken = OudsColorKeyToken.Content.OnBrand.Secondary, override val colorContentBrandFocus: OudsColorKeyToken = OudsColorKeyToken.Content.OnAction.Focus, override val colorContentBrandHover: OudsColorKeyToken = OudsColorKeyToken.Content.OnAction.Hover, @@ -66,21 +87,42 @@ internal data class WireframeButtonTokens( override val colorContentMinimalHover: OudsColorKeyToken = OudsColorKeyToken.Action.Hover, override val colorContentMinimalLoading: OudsColorKeyToken = OudsColorKeyToken.Action.Loading, override val colorContentMinimalPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Pressed, - override val sizeIcon: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, - override val sizeIconOnly: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeSmall, + override val sizeIconDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeIconOnlyDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeSmall, + override val sizeIconOnlySmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeIconSmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Medium.SizeSmall, + @Deprecated("") override val sizeLoader: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, - override val sizeMaxHeightIconOnly: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val sizeMinHeight: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val sizeMinWidth: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveArea, - override val spaceColumnGapChevron: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, - override val spaceColumnGapIcon: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.Small, - override val spaceColumnGapIconChevron: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, - override val spaceInsetIconOnly: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Medium, - override val spacePaddingBlock: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Medium, - override val spacePaddingInlineChevronEnd: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, - override val spacePaddingInlineChevronStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, - override val spacePaddingInlineEndIconStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, - override val spacePaddingInlineIconNone: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.FourExtraLarge, - override val spacePaddingInlineIconStart: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ExtraLarge, - override val spacePaddingInlineStartIconEnd: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge + override val sizeMaxWidthHeightIconOnlyDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMaxWidthHeightIconOnlySmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeMinHeightDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMinHeightSmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeMinWidthDefault: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaDefault, + override val sizeMinWidthSmall: OudsSizeKeyToken = OudsSizeKeyToken.MinInteractiveAreaSmall, + override val sizeProgressIndicatorDefault: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeExtraSmall, + override val sizeProgressIndicatorSmall: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Medium.SizeSmall, + override val spaceColumnGapChevronDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, + override val spaceColumnGapChevronSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, + override val spaceColumnGapIconChevronDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.TwoExtraSmall, + override val spaceColumnGapIconChevronSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ThreeExtraSmall, + override val spaceColumnGapIconDefault: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.Small, + override val spaceColumnGapIconSmall: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.ExtraSmall, + override val spaceInsetIconOnlyDefault: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Medium, + override val spaceInsetIconOnlySmall: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Small, + override val spaceInsetProgressIndicartorOnlyDefault: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.FourExtraSmall, + override val spaceInsetProgressIndicartorOnlySmall: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.FourExtraSmall, + override val spacePaddingBlockDefault: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Medium, + override val spacePaddingBlockSmall: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.Small, + override val spacePaddingInlineChevronEndDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineChevronEndSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Medium, + override val spacePaddingInlineChevronStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineChevronStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Medium, + override val spacePaddingInlineEndIconStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, + override val spacePaddingInlineEndIconStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge, + override val spacePaddingInlineIconNoneDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.FourExtraLarge, + override val spacePaddingInlineIconNoneSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge, + override val spacePaddingInlineIconStartDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ExtraLarge, + override val spacePaddingInlineIconStartSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.Large, + override val spacePaddingInlineStartIconEndDefault: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.ThreeExtraLarge, + override val spacePaddingInlineStartIconEndSmall: OudsSpaceKeyToken.PaddingInline = OudsSpaceKeyToken.PaddingInline.TwoExtraLarge ) : OudsButtonTokens diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeComponentsTokens.kt b/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeComponentsTokens.kt index 24dd4cdc6f..be235a3bf6 100644 --- a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeComponentsTokens.kt +++ b/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeComponentsTokens.kt @@ -28,6 +28,7 @@ import com.orange.ouds.theme.tokens.components.OudsInputTagTokens import com.orange.ouds.theme.tokens.components.OudsLinkMonoTokens import com.orange.ouds.theme.tokens.components.OudsLinkTokens import com.orange.ouds.theme.tokens.components.OudsPinCodeInputTokens +import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorMonoTokens import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorTokens import com.orange.ouds.theme.tokens.components.OudsRadioButtonTokens import com.orange.ouds.theme.tokens.components.OudsSwitchTokens @@ -52,6 +53,7 @@ internal data class WireframeComponentsTokens( override val linkMonochrome: OudsLinkMonoTokens = WireframeLinkMonoTokens(), override val pinCodeInput: OudsPinCodeInputTokens = WireframePinCodeInputTokens(), override val progressIndicator: OudsProgressIndicatorTokens = WireframeProgressIndicatorTokens(), + override val progressIndicatorMonochrome: OudsProgressIndicatorMonoTokens = WireframeProgressIndicatorMonoTokens(), override val radioButton: OudsRadioButtonTokens = WireframeRadioButtonTokens(), override val switch: OudsSwitchTokens = WireframeSwitchTokens(), override val tag: OudsTagTokens = WireframeTagTokens(), diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorMonoTokens.kt b/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorMonoTokens.kt new file mode 100644 index 0000000000..74a4d55ec3 --- /dev/null +++ b/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorMonoTokens.kt @@ -0,0 +1,28 @@ +// +// Software Name: OUDS Android +// SPDX-FileCopyrightText: Copyright (c) Orange SA +// SPDX-License-Identifier: MIT +// +// This software is distributed under the MIT license, +// the text of which is available at https://opensource.org/license/MIT/ +// or see the "LICENSE" file for more details. +// +// Software description: Android library of reusable graphical components +// + +// Wireframe brand tokens version 2.5.0 +// Generated by Tokenator + +package com.orange.ouds.theme.wireframe.tokens.components + +import androidx.compose.ui.graphics.Color +import com.orange.ouds.theme.tokens.OudsColorKeyToken +import com.orange.ouds.theme.tokens.OudsLightDarkColorKeyToken +import com.orange.ouds.theme.tokens.components.OudsLightDarkColor +import com.orange.ouds.theme.tokens.components.OudsProgressIndicatorMonoTokens +import com.orange.ouds.theme.wireframe.tokens.raw.WireframeColorRawTokens + +internal data class WireframeProgressIndicatorMonoTokens( + override val colorContentIndicator: OudsColorKeyToken = OudsLightDarkColorKeyToken(OudsColorKeyToken.Repository.Neutral.Emphasized.Black, OudsColorKeyToken.Repository.Neutral.Muted.White), + override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor(WireframeColorRawTokens.ColorFunctionalGrayLight320, WireframeColorRawTokens.ColorFunctionalGrayDark480) +) : OudsProgressIndicatorMonoTokens diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorTokens.kt b/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorTokens.kt index f86e8133b4..d24bfc5c72 100644 --- a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorTokens.kt +++ b/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorTokens.kt @@ -15,6 +15,7 @@ package com.orange.ouds.theme.wireframe.tokens.components +import androidx.compose.ui.graphics.Color import com.orange.ouds.theme.tokens.OudsBorderKeyToken import com.orange.ouds.theme.tokens.OudsSpaceKeyToken import com.orange.ouds.theme.tokens.components.OudsLightDarkColor @@ -25,10 +26,7 @@ import com.orange.ouds.tokens.raw.OudsDimensionRawTokens internal data class WireframeProgressIndicatorTokens( override val borderRadiusDefault: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, override val borderRadiusRounded: OudsBorderKeyToken.Radius = OudsBorderKeyToken.Radius.Pill, - override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor( - WireframeColorRawTokens.ColorFunctionalGrayLight320, - WireframeColorRawTokens.ColorFunctionalGrayDark480 - ), + override val colorContentTrack: OudsLightDarkColor = OudsLightDarkColor(WireframeColorRawTokens.ColorFunctionalGrayLight320, WireframeColorRawTokens.ColorFunctionalGrayDark480), override val sizeLinearIndicatorHeight: Float = OudsDimensionRawTokens.Dimension50, override val spacePaddingBlock: OudsSpaceKeyToken.PaddingBlock = OudsSpaceKeyToken.PaddingBlock.ExtraSmall ) : OudsProgressIndicatorTokens diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSizeSemanticTokens.kt b/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSizeSemanticTokens.kt index cd6e472a37..2887bedfd1 100644 --- a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSizeSemanticTokens.kt +++ b/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSizeSemanticTokens.kt @@ -115,5 +115,7 @@ internal data class WireframeSizeSemanticTokens( override val maxWidthLabelSmallTablet: Float = OudsDimensionRawTokens.Dimension6000, override val maxWidthLabelXlargeMobile: Float = OudsDimensionRawTokens.Dimension6000, override val maxWidthLabelXlargeTablet: Float = OudsDimensionRawTokens.Dimension6000, - override val minInteractiveArea: Float = OudsDimensionRawTokens.Dimension600 + override val minInteractiveArea: Float = OudsDimensionRawTokens.Dimension600, + override val minInteractiveAreaDefault: Float = OudsDimensionRawTokens.Dimension600, + override val minInteractiveAreaSmall: Float = OudsDimensionRawTokens.Dimension500 ) : OudsSizeSemanticTokens diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png index 64e8581122..44496ada32 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png index caa03b92c1..bc1975a37b 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png index bd106c501e..ac877fa68a 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png index 34f1c2294d..45c2dc5a05 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png index 559b2bbaa7..75dc25b7b2 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png index 5de6b4081e..58b00c9eca 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png index be02cfdb9e..67ebd7b7a4 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png index 2a20f9d1e5..e9dd9bf9ec 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png index 11cf577ad2..43f56d7168 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png index d70e11d4ff..6c970c86f3 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png index fd7c7c0d12..32b0fac150 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png index 0f0bd4335a..793d746d05 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png index b556ba0887..43c048f416 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png index 48be13166f..b4a5bcde1f 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png index 0a8447c730..49de2dc131 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png index 07dea169e1..251e810149 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png index 1bd8ef3935..74ac77f697 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png index 130b794b15..f8344333b1 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png index 842d5dc3bd..248bd7b42d 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png index f916a98e57..3e528b32dd 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png index 350298ca3b..2c94e16d96 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png index 62a717bbe7..ae049e7e34 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png index 1e161779e2..2255f29254 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png index e7ac8d2dfc..4ade9f58bc 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png index 9d0d607da7..981b83eae5 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png index f41ec5a59c..f4a88bfafb 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png index 0810c1e5ff..8e1edb4cc9 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png index b0acb7dcf1..1e83555c20 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png index 95f25ed28f..bc51e85e27 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png index b202201265..e51f335e9a 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png index c27e345703..0b62763b0a 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png index b561118325..ca831758c1 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png index 9d39648852..0776c94045 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png index 94b033e1a9..445f81af80 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png index 35307f00b0..af8bb2a73b 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png index bfe1b275ca..b2a31c3149 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png index 3dc348b6f8..beca65f9bc 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png index 38aac88aa6..ea23e52b78 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png index bdd7402b68..8d228c05ea 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png index cfd21342a6..79eb26fd89 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png index 15227d130c..65060d13c4 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png index 04a427f8ba..1b402b059d 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png index 172ff08a7a..9190db6597 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png index 04ddb7f168..76780d4bbb 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png index c0ce156fcc..7edc73bbd8 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png index 1090323502..40416960be 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png index 4e3e79200a..7f8c29a608 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png index ef2b6104d1..be2a45922c 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png index a0f1ae7eac..902706cc17 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png index df04fef7a8..157e258389 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png index 9d39648852..0776c94045 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png index 877ccd8bcf..b4dd623d10 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png new file mode 100644 index 0000000000..8dc2264386 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png new file mode 100644 index 0000000000..14f712029c Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000..99f8cfa9a6 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[0].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[1].png new file mode 100644 index 0000000000..69297fccbf Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[1].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png new file mode 100644 index 0000000000..3371c31d24 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest$Sized_takeLightThemeSnapshot[2].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png index d871fb2de5..43b3008586 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png index f1e2610279..d385797314 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png index cfdd716dc3..ff5280d692 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png index ff90fce6e9..39c57962aa 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png index cb5dcce71e..a37c447ea9 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png index d8e047a8fc..134ae517da 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png index f12ce79e0d..132b572c54 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png index 2df881d580..ad71c170b5 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png index af85fa42d3..b0c0ec9609 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png index c185b01539..d72ebe9885 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png index 139c1d8ca2..30ecd73b83 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png index 9cbe4d3ff7..6434114322 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png index 08a4538c5d..273848ab43 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png index abbad8992d..40db11d1dc 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png index bd8f6cd9d2..90567ed730 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png index c522eecf3e..8a4d525096 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png index 8230df4268..f9c62b1ab8 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png index f833c68fb8..e68b706798 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png index 69b90275e1..e20d61e3e2 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png index 83b8ffafb7..42b3f8f124 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png index 988bf55133..a9f55da2d8 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png index 5bdae9f7e7..457326383f 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png index 25bcbbbdf8..0ba5c70369 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png index b0a8b92b69..b46abf87fd 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png index 9e75e98a6b..ebca927890 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png index 9390a5de9a..d2190a62c3 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png index 0f093cb618..782c10735d 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png index 413f0a372d..a851ce2327 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png index 3478e600b1..27c1d30759 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png index aaf518a215..5c5f57316b 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png index df5ae940cf..79a322a73e 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png index 2c8a27b2de..993995a9a7 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png index d289bdabe5..75726850f0 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png index 713186bf5b..810efd075f 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png index 38202f8714..16ff5def96 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png index ada2e3d93a..27f91eec23 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png index c9e7063792..8bfc99618a 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png index 1db2b3a85c..7443a9eb23 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png index a0846e3d35..e4b02b43b7 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png index 95a37e9e8f..defdc81692 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png index 585b5f70fa..7bef1599f8 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png index fd6d233da3..6dec47ddb0 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png index 16a84378ed..fa58ab44cd 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png index 571f5e8126..e5bc02fb1e 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png index f27c96ce31..5dd16c2b2d 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png index d6ae312e66..85ac6ec4c5 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png index d14ae80e01..7f71e79f41 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png index 2c40f4df4b..2c9e3820f8 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png index f7602534d2..fb1e90d56d 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png index 0f56e7a338..20de4e96b7 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png index 4cefe66389..a2f27f044f 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png index 852a50a3b6..425fc5d53f 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png index 15ef4dd041..e2471348dc 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png index 75e1a0ce67..d3d7fc547c 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png index 2e624cc856..9a79756936 100644 Binary files a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..95a10d8d0a Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png new file mode 100644 index 0000000000..80cc843428 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[0].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png new file mode 100644 index 0000000000..46db230b0c Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[10].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png new file mode 100644 index 0000000000..6d853f4f2c Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[11].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png new file mode 100644 index 0000000000..89e8f72211 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[12].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png new file mode 100644 index 0000000000..a9bbe45832 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[13].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png new file mode 100644 index 0000000000..049fbfcdf2 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[14].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png new file mode 100644 index 0000000000..40ee0cce0f Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[15].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png new file mode 100644 index 0000000000..1395d4b800 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[16].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png new file mode 100644 index 0000000000..234c53c2d4 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[17].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png new file mode 100644 index 0000000000..b0e7f2e56f Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[18].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png new file mode 100644 index 0000000000..8ed07c8ef9 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[19].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png new file mode 100644 index 0000000000..a2b762b784 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[1].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png new file mode 100644 index 0000000000..0f26b31665 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[20].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png new file mode 100644 index 0000000000..8ffc81ed1f Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[21].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png new file mode 100644 index 0000000000..e9bb9d19a0 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[22].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png new file mode 100644 index 0000000000..d7a0b3aa6e Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[23].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png new file mode 100644 index 0000000000..e3f095ecc0 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[24].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png new file mode 100644 index 0000000000..2ae2fb1289 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[25].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png new file mode 100644 index 0000000000..2be21e1ad7 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[26].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png new file mode 100644 index 0000000000..18af484a7b Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[27].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png new file mode 100644 index 0000000000..ce090262dc Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[28].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png new file mode 100644 index 0000000000..234c53c2d4 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[29].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png new file mode 100644 index 0000000000..95f0b5d38a Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[2].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png new file mode 100644 index 0000000000..1ae2b379ac Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[3].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png new file mode 100644 index 0000000000..871ba87685 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[4].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png new file mode 100644 index 0000000000..7b92accae4 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[5].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png new file mode 100644 index 0000000000..dd6bedf8cb Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[6].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png new file mode 100644 index 0000000000..2be6c19b31 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[7].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png new file mode 100644 index 0000000000..bcfb4faaf0 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[8].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png new file mode 100644 index 0000000000..1826d932e7 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeDarkThemeSnapshot[9].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000..69ee1a509c Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[0].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png new file mode 100644 index 0000000000..b21a954123 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[10].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png new file mode 100644 index 0000000000..2eeb6c96de Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[11].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png new file mode 100644 index 0000000000..d64789bd24 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[12].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png new file mode 100644 index 0000000000..1384a035e3 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[13].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png new file mode 100644 index 0000000000..14efae1eaa Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[14].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png new file mode 100644 index 0000000000..2ff1a6e92d Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[15].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png new file mode 100644 index 0000000000..aea5108f35 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[16].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png new file mode 100644 index 0000000000..45121aef50 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[17].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png new file mode 100644 index 0000000000..48a5ecaf9a Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[18].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png new file mode 100644 index 0000000000..619f86d681 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[19].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png new file mode 100644 index 0000000000..4c5f7f64bb Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[1].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png new file mode 100644 index 0000000000..e5956abe59 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[20].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png new file mode 100644 index 0000000000..ca0a4aee46 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[21].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png new file mode 100644 index 0000000000..ed5b7e5fd0 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[22].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png new file mode 100644 index 0000000000..49250f35fb Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[23].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png new file mode 100644 index 0000000000..be717356e2 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[24].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png new file mode 100644 index 0000000000..fc7d7e842d Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[25].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png new file mode 100644 index 0000000000..2df19e5110 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[26].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png new file mode 100644 index 0000000000..fac58d9763 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[27].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png new file mode 100644 index 0000000000..a78e2b42fc Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[28].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png new file mode 100644 index 0000000000..45121aef50 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[29].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png new file mode 100644 index 0000000000..ac48965502 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[2].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png new file mode 100644 index 0000000000..dee9cadcbc Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[3].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png new file mode 100644 index 0000000000..4e56706362 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[4].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png new file mode 100644 index 0000000000..0046d09178 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[5].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png new file mode 100644 index 0000000000..956000cc1a Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[6].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png new file mode 100644 index 0000000000..6489951380 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[7].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png new file mode 100644 index 0000000000..8edca6454b Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[8].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png new file mode 100644 index 0000000000..ac767855a9 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$Default_takeLightThemeSnapshot[9].png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..03511a2e30 Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$OnTwoLines_takeLightThemeSnapshot.png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..4c5f7f64bb Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png differ diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png new file mode 100644 index 0000000000..091faca16f Binary files /dev/null and b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSmallButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png differ