diff --git a/app/pubspec.yaml b/app/pubspec.yaml index 977a5af0b..ca8f387b6 100644 --- a/app/pubspec.yaml +++ b/app/pubspec.yaml @@ -15,7 +15,7 @@ description: 'A new Flutter project.' # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 1.2.0+120 +version: 1.3.0+120 environment: sdk: ^3.9.0 @@ -49,20 +49,20 @@ dependencies: webview_flutter: ^4.13.0 # URL Lancher. url_launcher: ^6.0.3 - # Global raw token - ouds_global_raw_tokens: ^1.1.2 # Core - ouds_core: ^1.2.0 + ouds_core: ^1.3.0 + # Global raw token + ouds_global_raw_tokens: ^1.3.0 # Orange Theme contract - ouds_theme_contract: ^1.2.0 + ouds_theme_contract: ^1.3.0 # Orange Theme - ouds_theme_orange: ^1.2.0 + ouds_theme_orange: ^1.3.0 # Orange Compact Theme - ouds_theme_orange_compact: ^1.2.0 + ouds_theme_orange_compact: ^1.3.0 # Sosh Theme - ouds_theme_sosh: ^1.2.0 + ouds_theme_sosh: ^1.3.0 # Wireframe Theme - ouds_theme_wireframe: ^1.2.0 + ouds_theme_wireframe: ^1.3.0 package_info_plus: ^8.3.1 # App Settings diff --git a/ouds_core/README.md b/ouds_core/README.md index e3daa21be..a30fcad4b 100644 --- a/ouds_core/README.md +++ b/ouds_core/README.md @@ -130,17 +130,17 @@ It is intended to replace internal frameworks and the previous [ODS](https://git ```yaml # Core - ouds_core: ^1.2.0 + ouds_core: ^1.3.0 # Orange Theme contract - ouds_theme_contract: ^1.2.0 + ouds_theme_contract: ^1.3.0 # Orange Theme - ouds_theme_orange: ^1.2.0 + ouds_theme_orange: ^1.3.0 # Orange Theme Compact - ouds_theme_orange_compact: ^1.2.0 + ouds_theme_orange_compact: ^1.3.0 # Sosh Theme - ouds_theme_sosh: ^1.2.0 + ouds_theme_sosh: ^1.3.0 # Wireframe Theme - ouds_theme_wireframe: ^1.2.0 + ouds_theme_wireframe: ^1.3.0 dependency_overrides: intl: ^0.20.2 @@ -189,7 +189,6 @@ This allows you to override style tokens for specific components such as border // Custom configuration with `OudsThemeConfigModel`. return OudsThemeConfigModel( button: OudsButtonConfig(rounded: false), // Apply rounded corners for the button. - tag: OudsTagConfig(rounded: false), // Apply rounded corners for the tag. textInput: OudsTextInputConfig(rounded: true), // Apply rounded corners for the text input. // Wrap with `OudsTheme` for theme customization. child: OudsTheme( diff --git a/ouds_core/pubspec.yaml b/ouds_core/pubspec.yaml index 79d61b055..080f9236a 100644 --- a/ouds_core/pubspec.yaml +++ b/ouds_core/pubspec.yaml @@ -1,6 +1,6 @@ name: ouds_core description: 'Contains the main elements of the OUDS Android library.' -version: 1.2.0 +version: 1.3.0 environment: sdk: ^3.9.0 @@ -18,7 +18,7 @@ dependencies: # Flutter svg flutter_svg: ^2.2.3 # ouds_theme_contract - ouds_theme_contract: ^1.2.0 + ouds_theme_contract: ^1.3.0 # ouds_accessibility_plugin ouds_accessibility_plugin: ^0.2.0 # phone number handling diff --git a/ouds_global_raw_tokens/README.md b/ouds_global_raw_tokens/README.md index 60fdd4529..b0f96acd6 100644 --- a/ouds_global_raw_tokens/README.md +++ b/ouds_global_raw_tokens/README.md @@ -14,7 +14,7 @@ To use **Ouds Global Raw Tokens**, add it as a dependency in your `pubspec.yaml` ```yaml dependencies: - ouds_global_raw_tokens: ^1.2.0 + ouds_global_raw_tokens: ^1.3.0 ``` ## Additional information diff --git a/ouds_global_raw_tokens/pubspec.yaml b/ouds_global_raw_tokens/pubspec.yaml index 2bad513e6..0ad5f59eb 100644 --- a/ouds_global_raw_tokens/pubspec.yaml +++ b/ouds_global_raw_tokens/pubspec.yaml @@ -1,6 +1,6 @@ name: ouds_global_raw_tokens description: 'Raw tokens are basic design values (e.g., colors, typography) used to create a flexible and consistent theme' -version: 1.2.0 +version: 1.3.0 environment: sdk: ^3.9.0 diff --git a/ouds_theme_contract/README.md b/ouds_theme_contract/README.md index 9d5e86c75..49f4560e6 100644 --- a/ouds_theme_contract/README.md +++ b/ouds_theme_contract/README.md @@ -14,7 +14,7 @@ To use **Ouds Theme Contract**, add it as a dependency in your `pubspec.yaml` fi ```yaml dependencies: - ouds_theme_contract: ^1.2.0 + ouds_theme_contract: ^1.3.0 ``` ## Package Structure diff --git a/ouds_theme_contract/pubspec.yaml b/ouds_theme_contract/pubspec.yaml index b73553f70..bc05cecb0 100644 --- a/ouds_theme_contract/pubspec.yaml +++ b/ouds_theme_contract/pubspec.yaml @@ -1,6 +1,6 @@ name: ouds_theme_contract description: 'Defines the interface for theming in the OUDS framework, ensuring consistent application of design tokens.' -version: 1.2.0 +version: 1.3.0 environment: sdk: ^3.9.0 @@ -11,7 +11,7 @@ resolution: workspace dependencies: flutter: sdk: flutter - ouds_global_raw_tokens: ^1.2.0 + ouds_global_raw_tokens: ^1.3.0 dev_dependencies: flutter_test: diff --git a/ouds_theme_orange/README.md b/ouds_theme_orange/README.md index fdd2f0dee..8214d465b 100644 --- a/ouds_theme_orange/README.md +++ b/ouds_theme_orange/README.md @@ -15,7 +15,7 @@ dependency in your `pubspec.yaml` file. ```yaml dependencies: - ouds_theme_orange: ^1.2.0 + ouds_theme_orange: ^1.3.0 ``` ## Additional information diff --git a/ouds_theme_orange/pubspec.yaml b/ouds_theme_orange/pubspec.yaml index 824ac320c..0eab6c3ae 100644 --- a/ouds_theme_orange/pubspec.yaml +++ b/ouds_theme_orange/pubspec.yaml @@ -1,6 +1,6 @@ name: ouds_theme_orange description: 'Orange theme implementation for OUDS, with branding-specific design tokens.' -version: 1.2.0 +version: 1.3.0 environment: sdk: ^3.9.0 @@ -11,9 +11,9 @@ resolution: workspace dependencies: flutter: sdk: flutter - ouds_core: ^1.2.0 - ouds_theme_contract: ^1.2.0 - ouds_global_raw_tokens: ^1.2.0 + ouds_core: ^1.3.0 + ouds_theme_contract: ^1.3.0 + ouds_global_raw_tokens: ^1.3.0 path_provider: ^2.0.0 http: ^1.6.0 diff --git a/ouds_theme_orange_compact/README.md b/ouds_theme_orange_compact/README.md index 672ad3bbe..66d9f4faf 100644 --- a/ouds_theme_orange_compact/README.md +++ b/ouds_theme_orange_compact/README.md @@ -14,7 +14,7 @@ To use **Theme Orange Compact**, add it as a dependency in your `pubspec.yaml` f ```yaml dependencies: - ouds_theme_orange_compact: ^1.2.0 + ouds_theme_orange_compact: ^1.3.0 ``` ## Other OUDS Libraries diff --git a/ouds_theme_orange_compact/pubspec.yaml b/ouds_theme_orange_compact/pubspec.yaml index 321f35a65..d86c8050b 100644 --- a/ouds_theme_orange_compact/pubspec.yaml +++ b/ouds_theme_orange_compact/pubspec.yaml @@ -1,6 +1,6 @@ name: ouds_theme_orange_compact description: 'Orange Compact theme implementation for OUDS, with branding-specific design tokens optimized for compact displays.' -version: 1.2.0 +version: 1.3.0 environment: sdk: ^3.9.0 @@ -11,10 +11,10 @@ resolution: workspace dependencies: flutter: sdk: flutter - ouds_core: ^1.2.0 - ouds_theme_contract: ^1.2.0 - ouds_global_raw_tokens: ^1.2.0 - ouds_theme_orange: ^1.2.0 + ouds_core: ^1.3.0 + ouds_theme_contract: ^1.3.0 + ouds_global_raw_tokens: ^1.3.0 + ouds_theme_orange: ^1.3.0 dev_dependencies: flutter_test: sdk: flutter diff --git a/ouds_theme_sosh/README.md b/ouds_theme_sosh/README.md index 86c6ea4bd..c8e4501c9 100644 --- a/ouds_theme_sosh/README.md +++ b/ouds_theme_sosh/README.md @@ -14,7 +14,7 @@ To use **Theme Sosh**, add it as a dependency in your `pubspec.yaml` file. ```yaml dependencies: - ouds_theme_sosh: ^1.2.0 + ouds_theme_sosh: ^1.3.0 ``` ## Other OUDS Libraries diff --git a/ouds_theme_sosh/pubspec.yaml b/ouds_theme_sosh/pubspec.yaml index a838c6fd8..aebb3003c 100644 --- a/ouds_theme_sosh/pubspec.yaml +++ b/ouds_theme_sosh/pubspec.yaml @@ -1,6 +1,6 @@ name: ouds_theme_sosh description: 'Sosh theme implementation for OUDS, with branding-specific design tokens.' -version: 1.2.0 +version: 1.3.0 environment: sdk: ^3.9.0 @@ -11,9 +11,9 @@ resolution: workspace dependencies: flutter: sdk: flutter - ouds_core: ^1.2.0 - ouds_theme_contract: ^1.2.0 - ouds_global_raw_tokens: ^1.2.0 + ouds_core: ^1.3.0 + ouds_theme_contract: ^1.3.0 + ouds_global_raw_tokens: ^1.3.0 dev_dependencies: flutter_test: diff --git a/ouds_theme_wireframe/README.md b/ouds_theme_wireframe/README.md index a2bbd675f..b200f2f5d 100644 --- a/ouds_theme_wireframe/README.md +++ b/ouds_theme_wireframe/README.md @@ -14,7 +14,7 @@ To use **Theme Wireframe**, add it as a dependency in your `pubspec.yaml` file. ```yaml dependencies: - ouds_theme_wireframe: ^1.2.0 + ouds_theme_wireframe: ^1.3.0 ``` ## Other OUDS Libraries diff --git a/ouds_theme_wireframe/pubspec.yaml b/ouds_theme_wireframe/pubspec.yaml index 3b8d2e405..7a99b9f6c 100644 --- a/ouds_theme_wireframe/pubspec.yaml +++ b/ouds_theme_wireframe/pubspec.yaml @@ -1,6 +1,6 @@ name: ouds_theme_wireframe description: 'Wireframe theme implementation for OUDS, with branding-specific design tokens.' -version: 1.2.0 +version: 1.3.0 environment: sdk: ^3.9.0 @@ -11,9 +11,9 @@ resolution: workspace dependencies: flutter: sdk: flutter - ouds_core: ^1.2.0 - ouds_theme_contract: ^1.2.0 - ouds_global_raw_tokens: ^1.2.0 + ouds_core: ^1.3.0 + ouds_theme_contract: ^1.3.0 + ouds_global_raw_tokens: ^1.3.0 dev_dependencies: flutter_test: