Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.0.0 wip #648

Merged
merged 22 commits into from
Nov 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
5 changes: 5 additions & 0 deletions app/over_react_redux/todo_client/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,8 @@ dev_dependencies:
dependency_overrides:
over_react:
path: '../../../'
react:
git:
url: https://github.com/cleandart/react-dart.git
ref: 6.0.0-wip

24 changes: 14 additions & 10 deletions lib/over_react.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export 'package:react/react.dart'
SyntheticKeyboardEvent,
SyntheticFocusEvent,
SyntheticFormEvent,
SyntheticDataTransfer,
SyntheticMouseEvent,
SyntheticTouchEvent,
SyntheticTransitionEvent,
Expand All @@ -43,13 +42,22 @@ export 'package:react/react.dart'
createSyntheticAnimationEvent,
createSyntheticUIEvent,
createSyntheticWheelEvent,
SyntheticEventTypeHelpers;
fakeSyntheticFormEvent,
wrapNativeKeyboardEvent,
wrapNativeMouseEvent,
SyntheticEventTypeHelpers,
DataTransferHelper;

export 'package:react/react_client/js_backed_map.dart' show JsBackedMap;

export 'package:react/react_client.dart'
// ignore: deprecated_member_use
show setClientConfiguration, chainRefs, ReactElement, ReactComponentFactoryProxy;
show
// ignore: deprecated_member_use
setClientConfiguration,
chainRefs,
ReactElement,
ReactComponentFactoryProxy;
export 'package:react/react_client/react_interop.dart' show ReactErrorInfo, Ref;
export 'package:react/hooks.dart' show StateHook, ReducerHook;

Expand All @@ -58,11 +66,9 @@ export 'src/component/_deprecated/abstract_transition_props.dart';
export 'src/component/aria_mixin.dart';
export 'src/component/callback_typedefs.dart';
export 'src/component/_deprecated/error_boundary.dart';
export 'src/component/_deprecated/error_boundary_mixins.dart'
hide LegacyErrorBoundaryApi;
export 'src/component/_deprecated/error_boundary_mixins.dart' hide LegacyErrorBoundaryApi;
export 'src/component/dom_components.dart';
export 'src/component/error_boundary_api.dart'
show defaultErrorBoundaryLoggerName;
export 'src/component/error_boundary_api.dart' show defaultErrorBoundaryLoggerName;
export 'src/component/ref_util.dart';
export 'src/component/fragment_component.dart';
export 'src/component/hooks.dart';
Expand All @@ -73,8 +79,7 @@ export 'src/component/prop_typedefs.dart';
export 'src/component/pure_component_mixin.dart';
export 'src/component/_deprecated/resize_sensor.dart';
export 'src/component_declaration/annotations.dart';
export 'src/component_declaration/builder_helpers.dart'
hide GeneratedErrorMessages;
export 'src/component_declaration/builder_helpers.dart' hide GeneratedErrorMessages;
export 'src/component_declaration/component_base_2.dart'
show
registerComponent2,
Expand All @@ -91,7 +96,6 @@ export 'src/util/constants_base.dart';
export 'src/util/css_value_util.dart';
export 'src/util/dom_util.dart';
export 'src/util/equality.dart' show propsOrStateMapsEqual;
export 'src/util/event_helpers.dart';
export 'src/util/guid_util.dart';
export 'src/util/hoc.dart';
export 'src/util/handler_chain_util.dart';
Expand Down
88 changes: 0 additions & 88 deletions lib/src/util/event_helpers.dart

This file was deleted.

10 changes: 10 additions & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,13 @@ dev_dependencies:
pedantic: ^1.8.0
test: ^1.9.1
yaml: ^2.2.1

dependency_overrides:
react:
git:
url: https://github.com/cleandart/react-dart.git
ref: 6.0.0-wip
over_react_test:
git:
url: https://github.com/Workiva/over_react_test.git
ref: widen-over-react-constraint
161 changes: 0 additions & 161 deletions test/over_react/util/event_helpers_test.dart

This file was deleted.

Loading