Skip to content

Commit

Permalink
docs: update the documentation
Browse files Browse the repository at this point in the history
build: change dependencies
  • Loading branch information
QwinWork committed Apr 19, 2024
1 parent 975a7e1 commit c1f78b1
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 4 deletions.
4 changes: 4 additions & 0 deletions sviper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.8

docs: update the documentation

## 1.1.7

docs: update the documentation
Expand Down
1 change: 1 addition & 0 deletions sviper/lib/src/annotation/sviper_annotation.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// Annotation for module generator
class Sviper {
/// Specifies whether the module has an Input
final bool? hasInput;
Expand Down
1 change: 1 addition & 0 deletions sviper/lib/src/module/sviper.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// Module parts
import 'package:flutter/material.dart';

part 'sviper_configuration.dart';
Expand Down
1 change: 1 addition & 0 deletions sviper/lib/src/module/sviper_router.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ part of 'sviper.dart';
/// An interface for app-specific router that manage navigation
abstract class ISviperRouter<T> {}

/// Base class for module router
abstract class SviperRouter {
/// Getter for the app-specific router that manage navigation
ISviperRouter<void>? get router;
Expand Down
1 change: 1 addition & 0 deletions sviper/lib/src/module/sviper_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ abstract class SviperWidget extends StatefulWidget {

/// Base class for Page module builder
abstract class SviperPage<Output> extends SviperWidget {
/// The name of the page
final String name;
final Object _input;

Expand Down
1 change: 1 addition & 0 deletions sviper/lib/sviper.dart
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/// Annotation for module generator
export 'src/annotation/sviper_annotation.dart';
1 change: 1 addition & 0 deletions sviper/lib/sviper_module.dart
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/// Module parts
export 'src/module/sviper.dart';
5 changes: 3 additions & 2 deletions sviper/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: sviper
description: Sviper is an architectural pattern for Flutter projects, inspired by the VIPER architecture.
repository: https://github.com/siqwin/sviper
version: 1.1.7
version: 1.1.8

environment:
sdk: ^3.0.0
sdk: ">=3.0.0"
flutter: ">=3.0.0"

dependencies:
flutter:
Expand Down
4 changes: 4 additions & 0 deletions sviper_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.8

build: change dependencies

## 1.1.7

docs: update the documentation
Expand Down
4 changes: 2 additions & 2 deletions sviper_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: sviper_generator
description: Generator for Sviper (architectural pattern for Flutter projects, inspired by the VIPER architecture).
repository: https://github.com/siqwin/sviper
version: 1.1.7
version: 1.1.8

environment:
sdk: ^3.0.0
sdk: ">=3.0.0"

dependencies:
sviper: ^1.1.7
Expand Down

0 comments on commit c1f78b1

Please sign in to comment.