Skip to content

Commit dbab2c2

Browse files
chore: update tokens 1.9.0 (#464) (#90) (#91) (#493)
* chore: update tokens * chore: update change log --------- Co-authored-by: boosted-bot <boosted-bot@users.noreply.github.com> Co-authored-by: Ahmed Amine Zribi <ahmedamine.zribi@sofrecom.com>
1 parent 64ac37d commit dbab2c2

22 files changed

+461
-10
lines changed

ouds_global_raw_tokens/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased](https://github.com/Orange-OpenSource/ouds-flutter/compare/0.5.0...develop)
88

9+
### Changed
10+
- [Library] Update tokens 1.9.0 `Bar` and `Effect` ([#493](https://github.com/Orange-OpenSource/ouds-flutter/issues/493))
11+
- [Library] Update tokens 1.9.0 ([#478](https://github.com/Orange-OpenSource/ouds-flutter/issues/478))
12+
- [Library] Update tokens 1.8.0 ([#436](https://github.com/Orange-OpenSource/ouds-flutter/issues/436))
13+
914
## [0.5.0](https://github.com/Orange-OpenSource/ouds-flutter/compare/0.4.0...0.5.0) - 2025-08-14
1015

1116
## [0.4.0](https://github.com/Orange-OpenSource/ouds-flutter/compare/0.3.0...0.4.0) - 2025-07-11
1217

1318
### Changed
14-
- [Library] Update tokens 1.9.0 ([#478](https://github.com/Orange-OpenSource/ouds-flutter/issues/478))
15-
- [Library] Update tokens 1.8.0 ([#436](https://github.com/Orange-OpenSource/ouds-flutter/issues/436))
1619
- [Library] Update tokens 1.2.0 ([#236](https://github.com/Orange-OpenSource/ouds-flutter/issues/236))
1720
- [Library] Update tokens 1.1.0 ([#225](https://github.com/Orange-OpenSource/ouds-flutter/issues/225))
1821

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// Software Name: OUDS Flutter
3+
// SPDX-FileCopyrightText: Copyright (c) Orange SA
4+
// SPDX-License-Identifier: MIT
5+
//
6+
// This software is distributed under the MIT license,
7+
// the text of which is available at https://opensource.org/license/MIT/
8+
// or see the "LICENSE" file for more details.
9+
//
10+
// Software description: Flutter library of reusable graphical components
11+
//
12+
13+
// OUDS core tokens version 1.9.0
14+
// Generated by Tokenator
15+
16+
class EffectRawTokens {
17+
static const effectBlur160 = 16;
18+
static const effectBlur320 = 32;
19+
}

ouds_theme_contract/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- [Library] Tokens: `link` and `linkMono` ([#390](https://github.com/Orange-OpenSource/ouds-flutter/issues/#390))
1111

1212
### Changed
13+
- [Library] Update tokens 1.9.0 `Bar` and `Effect` ([#493](https://github.com/Orange-OpenSource/ouds-flutter/issues/493))
1314
- [Library] Update tokens 1.9.0 ([#478](https://github.com/Orange-OpenSource/ouds-flutter/issues/478))
1415
- [Library] Update tokens 1.8.0 ([#436](https://github.com/Orange-OpenSource/ouds-flutter/issues/436))
1516
- [Library] Update tokens 1.5.0 ([#357](https://github.com/Orange-OpenSource/ouds-flutter/issues/357))
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
//
2+
// Software Name: OUDS Flutter
3+
// SPDX-FileCopyrightText: Copyright (c) Orange SA
4+
// SPDX-License-Identifier: MIT
5+
//
6+
// This software is distributed under the MIT license,
7+
// the text of which is available at https://opensource.org/license/MIT/
8+
// or see the "LICENSE" file for more details.
9+
//
10+
// Software description: Flutter library of reusable graphical components
11+
//
12+
13+
// Orange brand tokens version 2.2.0
14+
// Generated by Tokenator
15+
16+
import 'package:flutter/material.dart';
17+
18+
abstract class OudsBarTokens {
19+
late double borderRadiusActiveIndicatorCustomBottom;
20+
late double borderRadiusActiveIndicatorCustomTop;
21+
late Color colorActiveIndicatorAndroidSelectedDisabled;
22+
late Color colorActiveIndicatorAndroidSelectedEnabled;
23+
late Color colorActiveIndicatorAndroidSelectedFocus;
24+
late Color colorActiveIndicatorAndroidSelectedHover;
25+
late Color colorActiveIndicatorAndroidSelectedPressed;
26+
late Color colorActiveIndicatorAndroidUnselectedDisabled;
27+
late Color colorActiveIndicatorAndroidUnselectedFocus;
28+
late Color colorActiveIndicatorAndroidUnselectedHover;
29+
late Color colorActiveIndicatorAndroidUnselectedPressed;
30+
late Color colorActiveIndicatorCustomSelectedEnabled;
31+
late Color colorActiveIndicatorCustomSelectedFocus;
32+
late Color colorActiveIndicatorCustomSelectedHover;
33+
late Color colorActiveIndicatorCustomSelectedPressed;
34+
late Color colorBgOpaque;
35+
late Color colorBgTranslucentDark;
36+
late Color colorBgTranslucentLight;
37+
late Color colorBorderBadge;
38+
late Color colorContentOnIosAccent;
39+
late Color colorContentSelectedEnabled;
40+
late Color colorContentSelectedFocus;
41+
late Color colorContentSelectedHover;
42+
late Color colorContentSelectedPressed;
43+
late Color colorContentUnselectedEnabledDark;
44+
late Color colorContentUnselectedEnabledLight;
45+
late Color colorContentUnselectedFocus;
46+
late Color colorContentUnselectedHover;
47+
late Color colorContentUnselectedPressed;
48+
late int effectBgBlur;
49+
late double opacityActiveIndicatorCustom;
50+
late double sizeHeightActiveIndicatorCustom;
51+
late double sizeWidthActiveIndicatorCustomBottom;
52+
late double sizeWidthActiveIndicatorCustomTop;
53+
}

ouds_theme_contract/lib/theme/tokens/components/ouds_linkMono_tokens.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// Software description: Flutter library of reusable graphical components
1111
//
1212

13-
// Orange brand tokens version 2.0.1
13+
// Orange brand tokens version 2.2.0
1414
// Generated by Tokenator
1515

1616
import 'package:flutter/material.dart';

ouds_theme_contract/lib/theme/tokens/components/ouds_link_tokens.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// Software description: Flutter library of reusable graphical components
1111
//
1212

13-
// Orange brand tokens version 2.0.1
13+
// Orange brand tokens version 2.2.0
1414
// Generated by Tokenator
1515

1616
import 'package:flutter/material.dart';
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//
2+
// Software Name: OUDS Flutter
3+
// SPDX-FileCopyrightText: Copyright (c) Orange SA
4+
// SPDX-License-Identifier: MIT
5+
//
6+
// This software is distributed under the MIT license,
7+
// the text of which is available at https://opensource.org/license/MIT/
8+
// or see the "LICENSE" file for more details.
9+
//
10+
// Software description: Flutter library of reusable graphical components
11+
//
12+
13+
// Orange brand tokens version 2.2.0
14+
// Generated by Tokenator
15+
16+
abstract class OudsEffectSemanticTokens {
17+
late int blurDrag;
18+
}

ouds_theme_orange/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- [Library] Tokens: `link` and `linkMono` ([#390](https://github.com/Orange-OpenSource/ouds-flutter/issues/#390))
1111

1212
### Changed
13+
- [Library] Update tokens 1.9.0 `Bar` and `Effect` ([#493](https://github.com/Orange-OpenSource/ouds-flutter/issues/493))
1314
- [Library] Use Solaris icons ([#245](https://github.com/Orange-OpenSource/ouds-flutter/issues/245))
1415
- [Library] Update tokens 1.9.0 ([#478](https://github.com/Orange-OpenSource/ouds-flutter/issues/478))
1516
- [Library] Update tokens 1.8.0 ([#436](https://github.com/Orange-OpenSource/ouds-flutter/issues/436))
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
//
2+
// Software Name: OUDS Flutter
3+
// SPDX-FileCopyrightText: Copyright (c) Orange SA
4+
// SPDX-License-Identifier: MIT
5+
//
6+
// This software is distributed under the MIT license,
7+
// the text of which is available at https://opensource.org/license/MIT/
8+
// or see the "LICENSE" file for more details.
9+
//
10+
// Software description: Flutter library of reusable graphical components
11+
//
12+
13+
// Orange brand tokens version 2.2.0
14+
// Generated by Tokenator
15+
16+
import 'package:flutter/material.dart';
17+
import 'package:ouds_global_raw_tokens/color_raw_tokens.dart';
18+
import 'package:ouds_global_raw_tokens/dimension_raw_tokens.dart';
19+
import 'package:ouds_global_raw_tokens/effect_raw_tokens.dart';
20+
import 'package:ouds_theme_contract/ouds_tokens_provider.dart';
21+
import 'package:ouds_theme_contract/theme/tokens/components/ouds_bar_tokens.dart';
22+
23+
class OrangeBarTokens extends OudsBarTokens {
24+
final OudsProvidersTokens providersTokens;
25+
26+
OrangeBarTokens(this.providersTokens);
27+
28+
@override
29+
double get borderRadiusActiveIndicatorCustomBottom => providersTokens.borderTokens.radiusNone;
30+
@override
31+
double get borderRadiusActiveIndicatorCustomTop => providersTokens.borderTokens.radiusNone;
32+
@override
33+
Color get colorActiveIndicatorAndroidSelectedDisabled => providersTokens.colorScheme.opacityTransparent;
34+
@override
35+
Color get colorActiveIndicatorAndroidSelectedEnabled => providersTokens.colorScheme.opacityTransparent;
36+
@override
37+
Color get colorActiveIndicatorAndroidSelectedFocus => providersTokens.colorScheme.opacityTransparent;
38+
@override
39+
Color get colorActiveIndicatorAndroidSelectedHover => providersTokens.colorScheme.opacityTransparent;
40+
@override
41+
Color get colorActiveIndicatorAndroidSelectedPressed => providersTokens.colorScheme.opacityTransparent;
42+
@override
43+
Color get colorActiveIndicatorAndroidUnselectedDisabled => providersTokens.colorScheme.opacityTransparent;
44+
@override
45+
Color get colorActiveIndicatorAndroidUnselectedFocus => providersTokens.colorScheme.opacityTransparent;
46+
@override
47+
Color get colorActiveIndicatorAndroidUnselectedHover => providersTokens.colorScheme.opacityTransparent;
48+
@override
49+
Color get colorActiveIndicatorAndroidUnselectedPressed => providersTokens.colorScheme.opacityTransparent;
50+
@override
51+
Color get colorActiveIndicatorCustomSelectedEnabled => providersTokens.colorScheme.actionSelected;
52+
@override
53+
Color get colorActiveIndicatorCustomSelectedFocus => providersTokens.colorScheme.actionFocus;
54+
@override
55+
Color get colorActiveIndicatorCustomSelectedHover => providersTokens.colorScheme.actionHover;
56+
@override
57+
Color get colorActiveIndicatorCustomSelectedPressed => providersTokens.colorScheme.actionPressed;
58+
@override
59+
Color get colorBgOpaque => providersTokens.colorScheme.bgSecondary;
60+
@override
61+
Color get colorBgTranslucentDark => ColorRawTokens.colorOpacityGrayDark800800;
62+
@override
63+
Color get colorBgTranslucentLight => ColorRawTokens.colorOpacityGrayLight80800;
64+
@override
65+
Color get colorBorderBadge => providersTokens.colorScheme.bgSecondary;
66+
@override
67+
Color get colorContentOnIosAccent => providersTokens.colorScheme.contentOnActionSelected;
68+
@override
69+
Color get colorContentSelectedEnabled => providersTokens.colorScheme.contentDefault;
70+
@override
71+
Color get colorContentSelectedFocus => providersTokens.colorScheme.actionFocus;
72+
@override
73+
Color get colorContentSelectedHover => providersTokens.colorScheme.actionHover;
74+
@override
75+
Color get colorContentSelectedPressed => providersTokens.colorScheme.actionPressed;
76+
@override
77+
Color get colorContentUnselectedEnabledDark => ColorRawTokens.colorOpacityWhite600;
78+
@override
79+
Color get colorContentUnselectedEnabledLight => ColorRawTokens.colorOpacityBlack600;
80+
@override
81+
Color get colorContentUnselectedFocus => providersTokens.colorScheme.contentDefault;
82+
@override
83+
Color get colorContentUnselectedHover => providersTokens.colorScheme.contentDefault;
84+
@override
85+
Color get colorContentUnselectedPressed => providersTokens.colorScheme.actionPressed;
86+
@override
87+
int get effectBgBlur => EffectRawTokens.effectBlur160;
88+
@override
89+
double get opacityActiveIndicatorCustom => providersTokens.opacityTokens.opaque;
90+
@override
91+
double get sizeHeightActiveIndicatorCustom => DimensionRawTokens.dimensionOutOfSystem75;
92+
@override
93+
double get sizeWidthActiveIndicatorCustomBottom => DimensionRawTokens.dimension300;
94+
@override
95+
double get sizeWidthActiveIndicatorCustomTop => DimensionRawTokens.dimension650;
96+
}

ouds_theme_orange/lib/components/orange_linkMono_tokens.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// Software description: Flutter library of reusable graphical components
1111
//
1212

13-
// Orange brand tokens version 2.0.1
13+
// Orange brand tokens version 2.2.0
1414
// Generated by Tokenator
1515

1616
import 'package:flutter/material.dart';

0 commit comments

Comments
 (0)