Skip to content

Commit

Permalink
v2.5.10
Browse files Browse the repository at this point in the history
- sdk: '>=3.5.0 <4.0.0'

- intl_messages: ^2.3.4
- dom_builder: ^2.2.6
- swiss_knife: ^3.2.2
- statistics: ^1.1.3
- mercury_client: ^2.2.4
- extended_type: ^2.1.1
- expressions: ^0.2.5+2
- args: ^2.6.0
- logging: ^1.3.0
- path: ^1.9.1
- test: ^1.25.13
- test_api: ^0.7.4
- test_core: ^0.6.8
- stack_trace: ^1.12.0

- build_web_compilers: ^4.1.0
- build_runner: ^2.4.14
  • Loading branch information
gmpassos committed Dec 19, 2024
1 parent 5503240 commit 0fa1058
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 26 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## 2.5.10

- sdk: '>=3.5.0 <4.0.0'

- intl_messages: ^2.3.4
- dom_builder: ^2.2.6
- swiss_knife: ^3.2.2
- statistics: ^1.1.3
- mercury_client: ^2.2.4
- extended_type: ^2.1.1
- expressions: ^0.2.5+2
- args: ^2.6.0
- logging: ^1.3.0
- path: ^1.9.1
- test: ^1.25.13
- test_api: ^0.7.4
- test_core: ^0.6.8
- stack_trace: ^1.12.0

- build_web_compilers: ^4.1.0
- build_runner: ^2.4.14

## 2.5.9

- `UIRootComponent`:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/bones_ui.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class BonesUI {
static const String version = '2.5.9';
static const String version = '2.5.10';
}
4 changes: 3 additions & 1 deletion lib/src/bones_ui_navigator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,9 @@ class UINavigator {

if (!force &&
_lastNavigateRoute == route &&
isEquivalentMap(parameters, _lastNavigateRouteParameters)) return;
isEquivalentMap(parameters, _lastNavigateRouteParameters)) {
return;
}

var routeNavigable = findNavigable(route);

Expand Down
2 changes: 0 additions & 2 deletions lib/src/component/capture.dart
Original file line number Diff line number Diff line change
Expand Up @@ -733,8 +733,6 @@ class _CapturedData {
}
}
}
default:
throw StateError("Unknown format: $dataFormat");
}
}

Expand Down
4 changes: 0 additions & 4 deletions lib/src/component/loading.dart
Original file line number Diff line number Diff line change
Expand Up @@ -453,8 +453,6 @@ String? getUILoadingTypeClass(UILoadingType type) {
return 'ui-loading-ripple';
case UILoadingType.ellipsis:
return 'ui-loading-ellipsis';
default:
return null;
}
}

Expand All @@ -474,8 +472,6 @@ int _getUILoadingTypeSubDivs(UILoadingType type) {
return 2;
case UILoadingType.ellipsis:
return 4;
default:
return 0;
}
}

Expand Down
36 changes: 18 additions & 18 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
name: bones_ui
description: Bones_UI - An intuitive and user-friendly Web User Interface framework for Dart.
version: 2.5.9
version: 2.5.10
homepage: https://github.com/Colossus-Services/bones_ui

environment:
sdk: '>=3.4.0 <4.0.0'
sdk: '>=3.5.0 <4.0.0'

executables:
bones_ui:
bones_ui_test:

dependencies:
intl_messages: ^2.3.1
intl_messages: ^2.3.4
dom_tools: ^2.3.1
dom_builder: ^2.2.5
dom_builder: ^2.2.6
json_render: ^2.1.0
json_object_mapper: ^2.0.1
swiss_knife: ^3.2.0
statistics: ^1.1.1
mercury_client: ^2.2.2
swiss_knife: ^3.2.2
statistics: ^1.1.3
mercury_client: ^2.2.4
dynamic_call: ^2.0.1
project_template: ^1.1.0
resource_portable: ^3.1.0
extended_type: ^2.1.0
expressions: ^0.2.5+1
extended_type: ^2.1.1
expressions: ^0.2.5+2
html_unescape: ^2.0.0
intl: ^0.19.0
enum_to_string: ^2.0.1
yaml: ^3.1.2
archive: ^3.6.1
collection: ^1.18.0
args: ^2.5.0
logging: ^1.2.0
path: ^1.9.0
test: ^1.25.8
test_api: ^0.7.3
test_core: ^0.6.5
args: ^2.6.0
logging: ^1.3.0
path: ^1.9.1
test: ^1.25.13
test_api: ^0.7.4
test_core: ^0.6.8
stream_channel: ^2.1.2
stack_trace: ^1.11.1
stack_trace: ^1.12.0


dev_dependencies:
build_web_compilers: ^4.0.10
build_runner: ^2.4.11
build_web_compilers: ^4.1.0
build_runner: ^2.4.14
lints: ^3.0.0
dependency_validator: ^3.2.3

Expand Down

0 comments on commit 0fa1058

Please sign in to comment.