-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: boosted-bot <[email protected]>
- Loading branch information
1 parent
2114d70
commit 5672e3c
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsListItemTokens.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// | ||
// 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 | ||
// | ||
|
||
// Tokens version 0.5.0 | ||
// Generated by Tokenator | ||
|
||
package com.orange.ouds.theme.tokens.components | ||
|
||
import com.orange.ouds.theme.tokens.OudsColorKeyToken | ||
import com.orange.ouds.theme.tokens.OudsSizeKeyToken | ||
import com.orange.ouds.theme.tokens.OudsSpaceKeyToken | ||
import com.orange.ouds.tokens.global.raw.DimensionRawTokens | ||
|
||
open class OudsListItemTokens( | ||
val colorBgFocus: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Focus, | ||
val colorBgHover: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Hover, | ||
val colorBgLoading: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Loading, | ||
val colorBgPressed: OudsColorKeyToken = OudsColorKeyToken.Action.Support.Pressed, | ||
val colorContentLoader: OudsColorKeyToken = OudsColorKeyToken.Content.Default, | ||
val sizeIcon: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeMedium, | ||
val sizeLoader: OudsSizeKeyToken.Icon = OudsSizeKeyToken.Icon.WithLabel.Large.SizeSmall, | ||
val sizeMinHeight: Float = DimensionRawTokens.dimension650, | ||
val sizeMinWidth: Float = DimensionRawTokens.dimension1400, | ||
val spaceColumnGap: OudsSpaceKeyToken.ColumnGap = OudsSpaceKeyToken.ColumnGap.Tall, | ||
val spaceInset: OudsSpaceKeyToken.Inset = OudsSpaceKeyToken.Inset.Medium, | ||
val spaceRowGap: OudsSpaceKeyToken.RowGap = OudsSpaceKeyToken.RowGap.None | ||
) |