6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 29684ffc
Changed files
common/pubspec.lock | 26 +++++++++++----------- concierge/example/pubspec.lock | 2 +- payment_plugin/example/pubspec.lock | 15 +++++++++++++ .../lib/presentation/components/add_card.dart | 1 + .../presentation/screens/payment_cards_page.dart | 1 + payment_plugin/pubspec.yaml | 2 ++ 6 files changed, 33 insertions(+), 14 deletions(-)
Diff
diff --git a/common/pubspec.lock b/common/pubspec.lock
index 6d0cb1af..b7997b32 100644
--- a/common/pubspec.lock
+++ b/common/pubspec.lock
@@ -101,10 +101,10 @@ packages:
dependency: transitive
description:
name: characters
- sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b
+ sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803
url: "https://pub.dev"
source: hosted
- version: "1.4.1"
+ version: "1.4.0"
checked_yaml:
dependency: transitive
description:
@@ -173,10 +173,10 @@ packages:
dependency: transitive
description:
name: dart_style
- sha256: "6f6b30cba0301e7b38f32bdc9a6bdae6f5921a55f0a1eb9450e1e6515645dbb2"
+ sha256: "15a7db352c8fc6a4d2bc475ba901c25b39fe7157541da4c16eacce6f8be83e49"
url: "https://pub.dev"
source: hosted
- version: "3.1.6"
+ version: "3.1.5"
dartx:
dependency: transitive
description:
@@ -380,26 +380,26 @@ packages:
dependency: transitive
description:
name: matcher
- sha256: "12956d0ad8390bbcc63ca2e1469c0619946ccb52809807067a7020d57e647aa6"
+ sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2
url: "https://pub.dev"
source: hosted
- version: "0.12.18"
+ version: "0.12.17"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
- sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b"
+ sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
url: "https://pub.dev"
source: hosted
- version: "0.13.0"
+ version: "0.11.1"
meta:
dependency: transitive
description:
name: meta
- sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
+ sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
url: "https://pub.dev"
source: hosted
- version: "1.17.0"
+ version: "1.16.0"
mime:
dependency: transitive
description:
@@ -545,10 +545,10 @@ packages:
dependency: transitive
description:
name: test_api
- sha256: "93167629bfc610f71560ab9312acdda4959de4df6fac7492c89ff0d3886f6636"
+ sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
url: "https://pub.dev"
source: hosted
- version: "0.7.9"
+ version: "0.7.6"
time:
dependency: transitive
description:
@@ -646,5 +646,5 @@ packages:
source: hosted
version: "3.1.3"
sdks:
- dart: ">=3.11.0 <4.0.0"
+ dart: ">=3.9.0 <4.0.0"
flutter: ">=3.18.0-18.0.pre.54"
diff --git a/concierge/example/pubspec.lock b/concierge/example/pubspec.lock
index c5adb3df..3650b41f 100644
--- a/concierge/example/pubspec.lock
+++ b/concierge/example/pubspec.lock
@@ -960,5 +960,5 @@ packages:
source: hosted
version: "3.1.3"
sdks:
- dart: ">=3.11.0 <4.0.0"
+ dart: ">=3.9.0 <4.0.0"
flutter: ">=3.35.0"
diff --git a/payment_plugin/example/pubspec.lock b/payment_plugin/example/pubspec.lock
index 83c269ba..9f5a5a8b 100644
--- a/payment_plugin/example/pubspec.lock
+++ b/payment_plugin/example/pubspec.lock
@@ -73,6 +73,13 @@ packages:
url: "https://pub.dev"
source: hosted
version: "1.19.1"
+ common:
+ dependency: transitive
+ description:
+ path: "../../common"
+ relative: true
+ source: path
+ version: "0.0.1"
crypto:
dependency: transitive
description:
@@ -81,6 +88,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "3.0.7"
+ csv:
+ dependency: transitive
+ description:
+ name: csv
+ sha256: c6aa2679b2a18cb57652920f674488d89712efaf4d3fdf2e537215b35fc19d6c
+ url: "https://pub.dev"
+ source: hosted
+ version: "6.0.0"
cupertino_icons:
dependency: "direct main"
description:
diff --git a/payment_plugin/lib/presentation/components/add_card.dart b/payment_plugin/lib/presentation/components/add_card.dart
index 0c444f74..6683d00a 100644
--- a/payment_plugin/lib/presentation/components/add_card.dart
+++ b/payment_plugin/lib/presentation/components/add_card.dart
@@ -1,4 +1,5 @@
import 'package:adyen_checkout/adyen_checkout.dart';
+import 'package:common/localization/l10n_utils.dart';
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
diff --git a/payment_plugin/lib/presentation/screens/payment_cards_page.dart b/payment_plugin/lib/presentation/screens/payment_cards_page.dart
index fd600b23..9d045d9e 100644
--- a/payment_plugin/lib/presentation/screens/payment_cards_page.dart
+++ b/payment_plugin/lib/presentation/screens/payment_cards_page.dart
@@ -1,3 +1,4 @@
+import 'package:common/localization/l10n_utils.dart';
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
diff --git a/payment_plugin/pubspec.yaml b/payment_plugin/pubspec.yaml
index 0cbbc024..d1ae4369 100644
--- a/payment_plugin/pubspec.yaml
+++ b/payment_plugin/pubspec.yaml
@@ -11,6 +11,8 @@ dependencies:
sdk: flutter
flutter_web_plugins:
sdk: flutter
+ common:
+ path: ../common
web: ^1.0.0
plugin_platform_interface: ^2.0.2
adyen_checkout: ^1.7.0