Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update tokens 0.5.0 #332

Merged
merged 1 commit into from
Feb 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
)
Loading