over_react 1.7.0
over_react: ^1.7.0 copied to clipboard
A library for building statically-typed React UI components using Dart.
OverReact Changelog #
1.7.0 #
- Eliminate dart2js warnings on component props classes #52
- Deprecate the
@Required()annotation since it conflicts with themetapackage. #51 Replaced by:-
arguments to the
Accessorannotation:@Accessor(isRequired: true, isNullable: true, requiredErrorMessage: 'foo') -
shorthand aliases:
@requiredProp/@nullableRequiredProp
-
1.6.0 #
- Improved
getProps()functionality. (#48)- Allows you to traverse wrapper components by setting the named parameter
traverseWrapperstotrue.
- Allows you to traverse wrapper components by setting the named parameter
1.5.0 #
- Add
ResizeSensorProps.quickMountflag for better performance when sensors are mounted often #46 - Add missing quiver dependency (now depends on quiver
>=0.21.4 <0.25.0) - Broaden analyzer dependency range to
>=0.26.1+3 <0.30.0(was>=0.26.1+3 <0.28.0) - Make
getProp,getProps, andmodifyPropsconditional based on the named parametershouldAdd/shouldModify.
1.4.0 #
Sync changes from original private repo library (#40)
This is the last time we'll do this - as the original library has now been completely switched over to use
over_react
-
Switched dependency from
browser_detectto our newplatform_detectlibrary! -
Improved
toStringmethod ofDebugFriendlyConstant. -
Improved
setSelectionRangepolyfill to avoid https://github.com/dart-lang/sdk/issues/22967 -
Added typedef for
ElementCallbackandResizeSensorHandler. -
Added
newStyleFromPropsutility function. -
Added
getPropKeyutility function.- Allows you to get a namespaced prop key dynamically!
Miscellaneous
- #28 Run unit tests in dart2js on CI
- #37 Update formatting guidelines WRT dartfmt and trailing commas
1.3.0 #
React JS Upgrade
- #31 Upgrade to
React JS
15.4.xvia react-dart3.1.0. - #27 Add missing SVG elements
(e.g.
Dom.foreignObjectpointed out by @kasperpeulen)
We are now on Gitter!
- #33 Implement vehicle for community discussion (on Gitter). Thanks for the suggestion @jtrunick!
1.2.0 #
Strong Mode
- #15 Make
over_reactcode "strong mode" compliant!- We will be working in the near future to make the code generated by our transformer compliant as well.
Dependency Updates
Bug Fixes
- #17 Add missing
browser_detectdependency.- Thanks @denniskaselow!
Documentation
- #16 / #18 Fix typos in readme.
- Thanks @denniskaselow / @johncblandii!
- #20 Improve PR / Issue templates.
1.1.1 #
1.1.0 #
1.0.2 #
- #5 Add some Bootstrap UI components to
web/to demonstrate what can be built using OverReact.
1.0.1 #
- Add test coverage for the
constants,dom_util,guid_utilandevent_helperslibraries.
1.0.0 #
Initial public release of the library.