feat: export default validation

This commit is contained in:
Freek van de Ven 2023-06-12 13:39:00 +02:00
parent d5699b2894
commit 44096e8c04
6 changed files with 6 additions and 17 deletions

View file

@ -4,11 +4,6 @@ on:
push: push:
branches: [ master ] branches: [ master ]
pull_request: pull_request:
branches:
- master
- feature/*
- bugfix/*
- hotfix/*
jobs: jobs:
lint: lint:

2
.gitignore vendored
View file

@ -28,7 +28,7 @@ migrate_working_dir/
.dart_tool/ .dart_tool/
.packages .packages
build/ build/
.metadata
.flutter-plugins-dependencies .flutter-plugins-dependencies
.flutter-plugins .flutter-plugins

View file

@ -1,10 +0,0 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: e3c29ec00c9c825c891d75054c63fcc46454dca1
channel: stable
project_type: package

View file

@ -1,3 +1,6 @@
## 4.1.1
* Export default LoginValidationService
## 4.1.0 ## 4.1.0
* Option to add spacers between all items * Option to add spacers between all items

View file

@ -5,4 +5,5 @@ export 'src/config/login_options.dart';
export 'src/widgets/email_password_login.dart'; export 'src/widgets/email_password_login.dart';
export 'src/widgets/forgot_password_form.dart'; export 'src/widgets/forgot_password_form.dart';
export 'src/service/validation.dart'; export 'src/service/validation.dart';
export 'src/service/login_validation.dart';
export 'src/widgets/mfa_widget.dart'; export 'src/widgets/mfa_widget.dart';

View file

@ -1,6 +1,6 @@
name: flutter_login name: flutter_login
description: Flutter Login Component description: Flutter Login Component
version: 4.1.0 version: 4.1.1
environment: environment:
sdk: ">=2.18.1 <3.0.0" sdk: ">=2.18.1 <3.0.0"