Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [DemoApp][Library] Tokens: `link` and `linkMono` ([#390](https://github.com/Orange-OpenSource/ouds-flutter/issues/#390))

### Changed
- [Library] Update tokens 1.8.0 ([#436](https://github.com/Orange-OpenSource/ouds-flutter/issues/436))
- [DemoApp] Components must have hidden divider by default `control item` ([#379](https://github.com/Orange-OpenSource/ouds-flutter/issues/#379))
- [Library] Update tokens 1.7.0 ([#357](https://github.com/Orange-OpenSource/ouds-flutter/issues/422))
- [Library] Update tokens 1.7.0 ([#422](https://github.com/Orange-OpenSource/ouds-flutter/issues/422))
- [Tool] Change the favicon to orange favicon in the documentation ([#371](https://github.com/Orange-OpenSource/ouds-flutter/issues/371))

### Fixed
Expand Down
18 changes: 12 additions & 6 deletions app/lib/ui/tokens/color/color_tokens_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ class ColorTokensModel {
ColorTokenItem(name: 'overlayModal', value: theme.colorScheme(context).overlayModal),
],
context.l10n.app_tokens_color_repository_label: [
ColorTokenItem(name: 'repositoryAccentDefault', value: theme.colorScheme(context).repositoryAccentDefault),
ColorTokenItem(name: 'repositoryAccentMedium', value: theme.colorScheme(context).repositoryAccentMedium),
ColorTokenItem(name: 'repositoryAccentHighest', value: theme.colorScheme(context).repositoryAccentHighest),
ColorTokenItem(name: 'repositoryAccentLow', value: theme.colorScheme(context).repositoryAccentLow),
ColorTokenItem(name: 'repositoryAccentLowest', value: theme.colorScheme(context).repositoryAccentLowest),
ColorTokenItem(name: 'repositoryInfoDefault', value: theme.colorScheme(context).repositoryInfoDefault),
ColorTokenItem(name: 'repositoryInfoMedium', value: theme.colorScheme(context).repositoryInfoMedium),
ColorTokenItem(name: 'repositoryInfoHighest', value: theme.colorScheme(context).repositoryInfoHighest),
ColorTokenItem(name: 'repositoryInfoLow', value: theme.colorScheme(context).repositoryInfoLow),
ColorTokenItem(name: 'repositoryInfoLowest', value: theme.colorScheme(context).repositoryInfoLowest),
ColorTokenItem(name: 'repositoryNegativeDefault', value: theme.colorScheme(context).repositoryNegativeDefault),
ColorTokenItem(name: 'repositoryNegativeMedium', value: theme.colorScheme(context).repositoryNegativeMedium),
ColorTokenItem(name: 'repositoryNegativeHigh', value: theme.colorScheme(context).repositoryNegativeHigh),
ColorTokenItem(name: 'repositoryNegativeHigher', value: theme.colorScheme(context).repositoryNegativeHigher),
ColorTokenItem(name: 'repositoryNegativeHighest', value: theme.colorScheme(context).repositoryNegativeHighest),
Expand Down Expand Up @@ -138,14 +138,20 @@ class ColorTokensModel {
ColorTokenItem(name: 'repositoryOpacityWhiteLower', value: theme.colorScheme(context).repositoryOpacityWhiteLower),
ColorTokenItem(name: 'repositoryOpacityWhiteLowest', value: theme.colorScheme(context).repositoryOpacityWhiteLowest),
ColorTokenItem(name: 'repositoryOpacityWhiteTransparent', value: theme.colorScheme(context).repositoryOpacityWhiteTransparent),
ColorTokenItem(name: 'repositoryPositiveDefault', value: theme.colorScheme(context).repositoryPositiveDefault),
ColorTokenItem(name: 'repositoryPositiveMedium', value: theme.colorScheme(context).repositoryPositiveMedium),
ColorTokenItem(name: 'repositoryPositiveHigh', value: theme.colorScheme(context).repositoryPositiveHigh),
ColorTokenItem(name: 'repositoryPositiveHighest', value: theme.colorScheme(context).repositoryPositiveHighest),
ColorTokenItem(name: 'repositoryPositiveLow', value: theme.colorScheme(context).repositoryPositiveLow),
ColorTokenItem(name: 'repositoryPositiveLowest', value: theme.colorScheme(context).repositoryPositiveLowest),
ColorTokenItem(name: 'repositoryPrimaryDefault', value: theme.colorScheme(context).repositoryPrimaryDefault),
ColorTokenItem(name: 'repositoryPrimaryMedium', value: theme.colorScheme(context).repositoryPrimaryMedium),
ColorTokenItem(name: 'repositoryPrimaryLow', value: theme.colorScheme(context).repositoryPrimaryLow),
ColorTokenItem(name: 'repositoryWarningDefault', value: theme.colorScheme(context).repositoryWarningDefault),
ColorTokenItem(name: 'repositorySecondaryLow', value: theme.colorScheme(context).repositorySecondaryLow),
ColorTokenItem(name: 'repositorySecondaryLower', value: theme.colorScheme(context).repositorySecondaryLower),
ColorTokenItem(name: 'repositorySecondaryLowest', value: theme.colorScheme(context).repositorySecondaryLowest),
ColorTokenItem(name: 'repositorySecondaryHigh', value: theme.colorScheme(context).repositorySecondaryHigh),
ColorTokenItem(name: 'repositorySecondaryHigher', value: theme.colorScheme(context).repositorySecondaryHigher),
ColorTokenItem(name: 'repositorySecondaryMedium', value: theme.colorScheme(context).repositorySecondaryMedium),
ColorTokenItem(name: 'repositoryWarningMedium', value: theme.colorScheme(context).repositoryWarningMedium),
ColorTokenItem(name: 'repositoryWarningHighest', value: theme.colorScheme(context).repositoryWarningHighest),
ColorTokenItem(name: 'repositoryWarningLow', value: theme.colorScheme(context).repositoryWarningLow),
ColorTokenItem(name: 'repositoryWarningLowest', value: theme.colorScheme(context).repositoryWarningLowest),
Expand Down
1 change: 1 addition & 0 deletions ouds_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Library] Tokens: `link` and `linkMono` ([#390](https://github.com/Orange-OpenSource/ouds-flutter/issues/#390))

### Changed
- [Library] Update tokens 1.8.0 ([#436](https://github.com/Orange-OpenSource/ouds-flutter/issues/436))
- [Tool] Change the favicon to orange favicon in the documentation ([#371](https://github.com/Orange-OpenSource/ouds-flutter/issues/371))

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion ouds_global_raw_tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.4.0](https://github.com/Orange-OpenSource/ouds-flutter/compare/0.3.0...0.4.0) - 2025-07-11

### Changed

- [Library] Update tokens 1.8.0 ([#436](https://github.com/Orange-OpenSource/ouds-flutter/issues/436))
- [Library] Update tokens 1.2.0 ([#236](https://github.com/Orange-OpenSource/ouds-flutter/issues/236))
- [Library] Update tokens 1.1.0 ([#225](https://github.com/Orange-OpenSource/ouds-flutter/issues/225))

Expand Down
2 changes: 1 addition & 1 deletion ouds_global_raw_tokens/lib/border_raw_tokens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// OUDS core tokens version 1.7.0
// OUDS core tokens version 1.8.0
// Generated by Tokenator

class BorderRawTokens {
Expand Down
4 changes: 3 additions & 1 deletion ouds_global_raw_tokens/lib/color_raw_tokens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// OUDS core tokens version 1.7.0
// OUDS core tokens version 1.8.0
// Generated by Tokenator

import 'package:flutter/material.dart';
Expand Down Expand Up @@ -109,6 +109,8 @@ class ColorRawTokens {
static const colorOpacityBlack960 = Color(0xf5000000);
static const colorOpacityDodgerBlue80 = Color(0x1426b2ff);
static const colorOpacityDodgerBlue520 = Color(0x8500598a);
static const colorOpacityGrayDark800800 = Color(0xcc1f1f1f);
static const colorOpacityGrayLight80800 = Color(0xccf4f4f4);
static const colorOpacityMalachite120 = Color(0x1f3de35a);
static const colorOpacityMalachite640 = Color(0xa30e621d);
static const colorOpacityScarlet80 = Color(0x14db0002);
Expand Down
2 changes: 1 addition & 1 deletion ouds_global_raw_tokens/lib/dimension_raw_tokens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// OUDS core tokens version 1.7.0
// OUDS core tokens version 1.8.0
// Generated by Tokenator

class DimensionRawTokens {
Expand Down
2 changes: 1 addition & 1 deletion ouds_global_raw_tokens/lib/font_raw_tokens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// OUDS core tokens version 1.7.0
// OUDS core tokens version 1.8.0
// Generated by Tokenator

import 'package:flutter/material.dart';
Expand Down
2 changes: 1 addition & 1 deletion ouds_global_raw_tokens/lib/grid_raw_tokens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// OUDS core tokens version 1.7.0
// OUDS core tokens version 1.8.0
// Generated by Tokenator

import 'package:ouds_global_raw_tokens/dimension_raw_tokens.dart';
Expand Down
2 changes: 1 addition & 1 deletion ouds_global_raw_tokens/lib/opacity_raw_tokens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// OUDS core tokens version 1.7.0
// OUDS core tokens version 1.8.0
// Generated by Tokenator

class OpacityRawTokens {
Expand Down
1 change: 1 addition & 0 deletions ouds_theme_contract/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Library] Tokens: `link` and `linkMono` ([#390](https://github.com/Orange-OpenSource/ouds-flutter/issues/#390))

### Changed
- [Library] Update tokens 1.8.0 ([#436](https://github.com/Orange-OpenSource/ouds-flutter/issues/436))
- [Library] Update tokens 1.5.0 ([#357](https://github.com/Orange-OpenSource/ouds-flutter/issues/357))

## [0.5.0](https://github.com/Orange-OpenSource/ouds-flutter/compare/0.4.0...0.5.0) - 2025-08-14
Expand Down
24 changes: 12 additions & 12 deletions ouds_theme_contract/lib/ouds_component_version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
// Generated by Tokenator

class OudsComponentVersion {
static const badge = '1.2.0';
static const button = '3.2.0';
static const checkbox = '2.2.0';
static const chip = '1.3.0';
static const divider = '1.0.0';
static const link = '2.2.0';
static const pinCodeInput = '1.1.0';
static const radioButton = '1.2.0';
static const skeleton = '1.0.0';
static const switchButton = '1.3.0';
static const tag = '1.4.0';
static const textInput = '1.1.0';
static const badge = '1.2.0';
static const button = '3.2.0';
static const checkbox = '2.3.0';
static const chip = '1.3.0';
static const divider = '1.0.0';
static const link = '2.2.0';
static const pinCodeInput = '1.2.0';
static const radioButton = '1.3.0';
static const skeleton = '1.0.0';
static const switchButton = '1.4.0';
static const tag = '1.4.0';
static const textInput = '1.3.0';
}
10 changes: 5 additions & 5 deletions ouds_theme_contract/lib/ouds_tokens_version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
// Generated by Tokenator

class OudsTokensVersion {
static const oudsCore = '1.7.0';
static const oudsCore = '1.8.0';
static const androidCore = '1.0.0';
static const androidSystem = '1.2.0';
static const orangeCore = '1.2.0';
static const orangeBrand = '2.0.1';
static const orangeBrand = '2.1.0';
static const soshCore = '1.2.0';
static const soshBrand = '2.0.1';
static const wireframeCore = '1.2.0';
static const wireframeBrand = '2.0.1';
static const soshBrand = '2.1.0';
static const wireframeCore = '1.3.0';
static const wireframeBrand = '2.1.0';
}
16 changes: 10 additions & 6 deletions ouds_theme_contract/lib/theme/scheme/color/ouds_color_scheme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -212,23 +212,23 @@ class OudsColorScheme {

/// Color - Repository

Color get repositoryAccentDefault => colorTokens.repositoryColorTokens.repositoryAccentDefault;
Color get repositoryAccentMedium => colorTokens.repositoryColorTokens.repositoryAccentMedium;

Color get repositoryAccentHighest => colorTokens.repositoryColorTokens.repositoryAccentHighest;

Color get repositoryAccentLow => colorTokens.repositoryColorTokens.repositoryAccentLow;

Color get repositoryAccentLowest => colorTokens.repositoryColorTokens.repositoryAccentLowest;

Color get repositoryInfoDefault => colorTokens.repositoryColorTokens.repositoryInfoDefault;
Color get repositoryInfoMedium => colorTokens.repositoryColorTokens.repositoryInfoMedium;

Color get repositoryInfoHighest => colorTokens.repositoryColorTokens.repositoryInfoHighest;

Color get repositoryInfoLow => colorTokens.repositoryColorTokens.repositoryInfoLow;

Color get repositoryInfoLowest => colorTokens.repositoryColorTokens.repositoryInfoLowest;

Color get repositoryNegativeDefault => colorTokens.repositoryColorTokens.repositoryNegativeDefault;
Color get repositoryNegativeMedium => colorTokens.repositoryColorTokens.repositoryNegativeMedium;

Color get repositoryNegativeHigh => colorTokens.repositoryColorTokens.repositoryNegativeHigh;

Expand Down Expand Up @@ -308,7 +308,7 @@ class OudsColorScheme {

Color get repositoryOpacityPrimaryMedium => colorTokens.repositoryColorTokens.repositoryOpacityPrimaryMedium;

Color get repositoryPositiveDefault => colorTokens.repositoryColorTokens.repositoryPositiveDefault;
Color get repositoryPositiveMedium => colorTokens.repositoryColorTokens.repositoryPositiveMedium;

Color get repositoryPositiveHigh => colorTokens.repositoryColorTokens.repositoryPositiveHigh;

Expand All @@ -320,14 +320,16 @@ class OudsColorScheme {

Color get repositoryPositiveLowest => colorTokens.repositoryColorTokens.repositoryPositiveLowest;

Color get repositoryPrimaryDefault => colorTokens.repositoryColorTokens.repositoryPrimaryDefault;
Color get repositoryPrimaryMedium => colorTokens.repositoryColorTokens.repositoryPrimaryMedium;

Color get repositoryPrimaryLow => colorTokens.repositoryColorTokens.repositoryPrimaryLow;

Color get repositoryPrimaryLower => colorTokens.repositoryColorTokens.repositoryPrimaryLower;

Color get repositoryPrimaryHigh => colorTokens.repositoryColorTokens.repositoryPrimaryHigh;

Color get repositorySecondaryLow => colorTokens.repositoryColorTokens.repositorySecondaryLow;

Color get repositorySecondaryLower => colorTokens.repositoryColorTokens.repositorySecondaryLower;

Color get repositorySecondaryLowest => colorTokens.repositoryColorTokens.repositorySecondaryLowest;
Expand All @@ -336,7 +338,9 @@ class OudsColorScheme {

Color get repositorySecondaryHigher => colorTokens.repositoryColorTokens.repositorySecondaryHigher;

Color get repositoryWarningDefault => colorTokens.repositoryColorTokens.repositoryWarningDefault;
Color get repositorySecondaryMedium => colorTokens.repositoryColorTokens.repositorySecondaryMedium;

Color get repositoryWarningMedium => colorTokens.repositoryColorTokens.repositoryWarningMedium;

Color get repositoryWarningHighest => colorTokens.repositoryColorTokens.repositoryWarningHighest;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

abstract class OudsBadgeTokens {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

import 'package:flutter/material.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

import 'package:flutter/material.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

abstract class OudsCheckboxTokens {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

import 'package:flutter/material.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

import 'package:flutter/material.dart';
Expand All @@ -23,6 +23,7 @@ abstract class OudsControlItemTokens {
late Color colorBgLoading;
late Color colorBgPressed;
late Color colorContentLoader;
late double sizeErrorIcon;
late double sizeIcon;
late double sizeListItemSizeMinHeightText;
late double sizeLoader;
Expand All @@ -33,5 +34,6 @@ abstract class OudsControlItemTokens {
late double spaceColumnGap;
late double spacePaddingBlock;
late double spacePaddingInline;
late double spacePaddingInlineErrorIcon;
late double spaceRowGap;
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

abstract class OudsDividerTokens {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

abstract class OudsPinCodeInputTokens {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

abstract class OudsRadioButtonTokens {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

import 'package:flutter/material.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

import 'package:flutter/material.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

abstract class OudsTagTokens {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.1
// Orange brand tokens version 2.1.0
// Generated by Tokenator

import 'package:flutter/material.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Software description: Flutter library of reusable graphical components
//

// Orange brand tokens version 2.0.0
// Orange brand tokens version 2.1.0
// Generated by Tokenator

abstract class OudsBorderSemanticTokens {
Expand Down
Loading
Loading