Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

GitHub Sync #658

Merged
merged 3 commits into from
Jul 15, 2021
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
8 changes: 8 additions & 0 deletions charts_common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.11.0
* Null support
* Update to latest from internal repo

# 0.10.0
* Internal bug fixes
* Bump versions of intl due to pull request

# 0.9.0
* Internal bug fixes
* Bump versions in Gemlock file due to security alerts
Expand Down
2 changes: 1 addition & 1 deletion charts_common/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: charts_common
version: 0.9.1
version: 0.11.0
description: A common library for charting packages.
author: Charts Team <charts_flutter@google.com>
homepage: https://github.com/google/charts
Expand Down
8 changes: 8 additions & 0 deletions charts_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.11.0
* Null support
* Update to latest from internal repo

# 0.10.0
* Internal bug fixes
* Bump versions of intl due to pull request

# 0.9.0
* Internal bug fixes
* Bump versions in Gemlock file due to security alerts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class SimpleLegendEntryLayout implements LegendEntryLayout {
: null;
if (isHidden) {
// Use a default color for hidden legend entries if none is provided.
color ??= Theme.of(context).textTheme.body1!.color;
color ??= Theme.of(context).textTheme.bodyText2!.color;
color = color!.withOpacity(0.26);
}

Expand Down
8 changes: 4 additions & 4 deletions charts_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: charts_flutter
version: 0.9.1
version: 0.11.0
description: Material Design charting library for flutter.
author: Charts Team <charts_flutter@google.com>
homepage: https://github.com/google/charts
Expand All @@ -13,9 +13,9 @@ dependencies:
#
# The pub version of charts_flutter will point to the pub version of charts_common.
# The latest pub version is commented out and shown below as an example.
# charts_common: 0.9.1
charts_common:
path: ../charts_common/
charts_common: 0.11.0
# charts_common:
# path: ../charts_common/
collection: ^1.14.5
flutter:
sdk: flutter
Expand Down
4 changes: 2 additions & 2 deletions docs/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ GEM
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
coffee-script (2.4.1)
coffee-script-source
execjs
Expand Down