Skip to content

Latest commit

 

History

History
923 lines (506 loc) · 41.1 KB

CHANGELOG.md

File metadata and controls

923 lines (506 loc) · 41.1 KB

1.0.5 (2022-02-28)

Compare @uirouter/react-hybrid versions 1.0.4 and 1.0.5


Updated @uirouter/react from 1.0.6 to 1.0.7

Changelog for @uirouter/react:

Compare @uirouter/react versions 1.0.6 and 1.0.7

Bug Fixes

  • update classnames library which has default export type (#939) (c771405)

1.0.4 (2021-05-02)

Compare @uirouter/react-hybrid versions 1.0.3 and 1.0.4

Bug Fixes

  • UIRouterContextComponent: Handle array of length 1 (#526) (925f816)

1.0.3 (2020-12-23)

Compare @uirouter/react-hybrid versions 1.0.2 and 1.0.3


Updated @uirouter/core from 6.0.5 to 6.0.7

Changelog for @uirouter/core:

Compare @uirouter/core versions 6.0.5 and 6.0.7

Bug Fixes

  • array: Fix decoding of array-type query parameters (44ebfae)
  • params: Bi-directionally en/decode path and search params. (#618) (89e99cd)

Updated @uirouter/react from 1.0.3 to 1.0.6

Changelog for @uirouter/react:

Compare @uirouter/react versions 1.0.3 and 1.0.6

Bug Fixes

  • sref: do not handle clicks if the dom element has a 'target' attribute (#799) (a13b3cd), closes #786

Updated @uirouter/angularjs from 1.0.26 to 1.0.29

Changelog for @uirouter/angularjs:

Compare @uirouter/angularjs versions 1.0.26 and 1.0.29

Bug Fixes

  • should not transition states when alt-clicked (8080adb)
  • make augmented StateRegistry.register overload better match the signature in core (db4e63f)

1.0.2 (2020-04-29)

Compare @uirouter/react-hybrid versions 1.0.1 and 1.0.2


Updated @uirouter/core from 6.0.4 to 6.0.5

Changelog for @uirouter/core:

Compare @uirouter/core versions 6.0.4 and 6.0.5

Bug Fixes

  • TargetState: make isDef check more thorough (e657cfe)

Features

  • urlRuleFactory: Add support for StateDeclarations in UrlRuleFactory.fromState() (539d33a)

Updated @uirouter/react from 1.0.2 to 1.0.3

Changelog for @uirouter/react:

Compare @uirouter/react versions 1.0.2 and 1.0.3

Bug Fixes

  • examples: update animating-transitions example (3520596)

Features


Updated @uirouter/angularjs from 1.0.25 to 1.0.26

Changelog for @uirouter/angularjs:

Compare @uirouter/angularjs versions 1.0.25 and 1.0.26

1.0.1 (2020-02-24)

Compare @uirouter/react-hybrid versions 1.0.0 and 1.0.1


Updated @uirouter/react from 1.0.1 to 1.0.2

Changelog for @uirouter/react:

Compare @uirouter/react versions 1.0.1 and 1.0.2

Bug Fixes

  • Only run initialization effect on first render (7788a98)

1.0.0 (2020-02-04)

Compare @uirouter/react-hybrid versions 0.3.12 and 1.0.0

Code Refactoring

  • Migrate to uirouter/react 1.x hooks (05549af)

BREAKING CHANGES

  • Requires uirouter/react 1.0.0 or higher

Updated @uirouter/core from 6.0.1 to 6.0.4

Changelog for @uirouter/core:

Compare @uirouter/core versions 6.0.1 and 6.0.4

Bug Fixes

  • hof: Rewrite curry from scratch (fc324c6), closes #350
  • IE9: Add safeConsole so IE9 doesn't break (9c8579d)
  • safeConsole: check if document is defined to avoid issues in node environments (da29d88)

Features

  • stateService: add transition option 'supercede' so transition can be ignored if one is pending (6e5a56f)

Updated @uirouter/react from 0.8.10 to 1.0.1

Changelog for @uirouter/react:

Compare @uirouter/react versions 0.8.10 and 1.0.1

Bug Fixes

  • : Fix router initialization when a router prop is present (dbce860)
  • errors: Always throw a new Error() so stacktraces are usable (26f6989)
  • typescript: Type onClick as MouseEventHandler. (7512f14)
  • uiCanExit: fix uiCanExit logic and use refs so hook de/registration happens outside any render (e73daa7)
  • UISrefActive: Avoid reusing the same array reference during setState() call (b9064cd)
  • useCurrentStateAndParams: deregister transition hook when unmounted (ba397a6)
  • useIsActive: Support relative state names (311f1f3)
  • useIsActive: Update isActive if the params have changed (b3efe35)
  • useSref: Call go() with the actual user provided state string (fba5321)
  • useSref: Recompute the targeted state (and hrefs) whenever states are added or removed from the state registry (4c6b0f0)
  • useSref: Update href if the stateName or params have changed (be8e07f)
  • useSref: Use optionsMemo and paramsMemo instead of the function arguments (81ae788)
  • useSrefActive: Export useSrefActive and useSrefActiveExact (d317790)
  • useStableCallback: update ref.current and fix test (ec4ce5d)
  • useTransitionHook: update hook when options or criteria changes. Use a stable callback reference. (57e593e)
  • Refactor UIView for compatibility with @uirouter/react-hybrid. (55d4c98)
  • Restore UIRouterConsumer and UIViewConsumer context consumer components. (3ed8ce1)
  • useUiSref: Throw if 'to' isnt a string (65f10e5)

Features

  • hooks: Add hooks: useTransitionHook, useOnStateChanged, useCurrentStateAndParams (00e6545)
  • hooks: Add useCanExit hook to block transitions from exiting a state (29d080c)
  • hooks: Add useDeepObjectDiff hook to detect changes to params or config objects in other hooks (07f3182)
  • hooks: Add useSrefActive and useSrefActiveExact hooks (2b5826f)
  • hooks: add useUIRouter and useCurrentState hooks (bce6539)
  • hooks: export useParentView for use in uirouter/react-hybrid (b5a2e80)
  • ReactHooks: introduce hooks useUISref and useUISrefActive (b9a763c)

BREAKING CHANGES

  • UIRouterConsumer now is of type import { UIRouter } from '@uirouter/core' instead of import { UIRouterReact } from '@uirouter/react'

Updated @uirouter/angularjs from 1.0.23 to 1.0.25

Changelog for @uirouter/angularjs:

Compare @uirouter/angularjs versions 1.0.23 and 1.0.25

0.3.12 (2019-10-26)

Compare @uirouter/react-hybrid versions 0.3.11 and 0.3.12

Features


Updated @uirouter/core from 5.0.23 to 6.0.1

Changelog for @uirouter/core:

Compare @uirouter/core versions 5.0.23 and 6.0.1

Bug Fixes

  • resolve: remove unnecessary generics from CustomAsyncPolicy (#452) (61f4ee9)
  • travis: use service: xvfb instead of launching it manually (1271fcd)
  • travis: use service: xvfb instead of launching it manually. install libgconf debian package (ac1ef4b)

Features

  • resolve: Remove RXWAIT async policy in favour of allowing user defined async policy function (#366) (0ad87f6)

BREAKING CHANGES

  • resolve: RXWAIT async policy has been removed, but it never worked in the first place

Updated @uirouter/react from 0.8.9 to 0.8.10

Changelog for @uirouter/react:

Compare @uirouter/react versions 0.8.9 and 0.8.10

Bug Fixes

  • travis: use service: xvfb instead of launching it manually. install libgconf debian package (07e6fb6)

Features

  • package: fixes to support React.StrictMode (#512) (cd8777a)

Updated @uirouter/angularjs from 1.0.22 to 1.0.23

Changelog for @uirouter/angularjs:

Compare @uirouter/angularjs versions 1.0.22 and 1.0.23

Bug Fixes

  • stateFilters: Export each function individually (978b882)
  • travis: Fix travis build (dc0f58a)
  • types: Remove @types/jquery from devDependencies, upgrade @types/angular (b12bc84)
  • viewDirective: add check for componentProvider, avoid extra trigger for $onInit (fixing #3735) (#3779) (c3e87ad)

0.3.11 (2019-10-08)

Compare @uirouter/react-hybrid versions 0.3.10 and 0.3.11

Bug Fixes

  • example: move react-scripts to devDependencies (84da7cc)
  • package: Change peerDependency on react from '^15.0.0' to '>=15.0.0' (8a3551a)
  • travis: use service: xvfb instead of launching it manually. install libgconf debian package to fix cypress (49ae46b)

0.3.10 (2019-02-03)

Compare @uirouter/react-hybrid versions 0.3.9 and 0.3.10

Updated @uirouter/core from 5.0.21 to 5.0.23

Compare @uirouter/core versions 5.0.21 and 5.0.23

Bug Fixes

  • lazyLoad: StateBuilder should not mutate the state declaration (1478a3c), closes /github.com/ui-router/core/commit/3cd5a2a#r31260154
  • state: Update URL in response to ignored transition due to redirect (c64c252)
  • test_downstream_projects: don't double build core while testing downstreams (148b16b)
  • typescript: Fix typing of onChange callback in UrlService (961ed0f), closes #229
  • typescript: Mark params as optional in StateService.href (614bfb4), closes #287
  • vanilla: Fix baseHref parsing with chrome-extension:// urls (f11be4d), closes #304

Features

  • TransitionHook: Pass in transition to HookMatchCriteria (#255) (926705e)

Updated @uirouter/react from 0.8.7 to 0.8.9

Compare @uirouter/react versions 0.8.7 and 0.8.9

Updated @uirouter/angularjs from 1.0.20 to 1.0.22

Compare @uirouter/angularjs versions 1.0.20 and 1.0.22

0.3.9 (2018-11-15)

Compare @uirouter/react-hybrid versions 0.3.8 and 0.3.9

Bug Fixes

  • UIVieMonkeyPatch: Remove erroneously added

0.3.8 (2018-11-15)

Compare @uirouter/react-hybrid versions 0.3.7 and 0.3.8

Bug Fixes

  • Portal: Support creating portals for multiple nested UIViews (ab4edcb)

Features

  • Add debugLog mechanism (94fe097)
  • Tweak debugLog output into columns (ac0dda2)

0.3.7 (2018-11-08)

Compare @uirouter/react-hybrid versions 0.3.6 and 0.3.7

Bug Fixes

  • ReactUIViewAdapter: Turn off debug statement (whops) (cb8b64d)

0.3.6 (2018-11-08)

Compare @uirouter/react-hybrid versions 0.3.5 and 0.3.6

Features

0.3.5 (2018-10-24)

Compare @uirouter/react-hybrid versions 0.3.4 and 0.3.5

Bug Fixes

Big thanks to @jutaz!

0.3.4 (2018-08-12)

Compare @uirouter/react-hybrid versions 0.3.3 and 0.3.4

Updated @uirouter/core from 5.0.20 to 5.0.21

Compare @uirouter/core versions 5.0.20 and 5.0.21

Bug Fixes

  • dynamic: Use 'find' from common.ts instead of Array.prototype.find (66a3244), closes #215
  • url: When using html5Mode and no tag is present, default to '/' (23742e3), closes #223

Updated @uirouter/react from 0.8.5 to 0.8.7

Compare @uirouter/react versions 0.8.5 and 0.8.7

Updated @uirouter/angularjs from 1.0.19 to 1.0.20

Compare @uirouter/angularjs versions 1.0.19 and 1.0.20

0.3.3 (2018-08-09)

Compare @uirouter/react-hybrid versions 0.3.2 and 0.3.3

Updated @uirouter/react from 0.8.4 to 0.8.5

Compare @uirouter/react versions 0.8.4 and 0.8.5

Features

  • UISref: Call child element's onClick prop first, if it exists (095a90d), closes #240

0.3.2 (2018-08-07)

Compare @uirouter/react-hybrid versions 0.3.1 and 0.3.2

Updated @uirouter/react from 0.8.3 to 0.8.4

Compare @uirouter/react versions 0.8.3 and 0.8.4

Bug Fixes

  • uiview: Fix uiCanExit when routing to a React.forwardRef() (cf5c668)

Features

  • UISrefActive: pass down className (fbb8152)
  • UISrefActive: support for nested UISrefActive (49e32e6)

0.3.1 (2018-07-20)

Compare @uirouter/react-hybrid versions 0.3.0 and 0.3.1

Updated @uirouter/core from 5.0.19 to 5.0.20

Compare @uirouter/core versions 5.0.19 and 5.0.20

Bug Fixes

  • params: When creating an array parameter from a custom type, copy the raw property (b6dd738), closes #178

Features

  • dynamic: Support dynamic flag on a state declaration (3cd5a2a)
  • transition: Added transition.paramsChanged() to get added/deleted/changed parameter values for a transition (10b7fde)
  • view: Add _pluginapi._registeredUIView() to get a ui-view by id (6533b51)

Updated @uirouter/react from 0.8.2 to 0.8.3

Compare @uirouter/react versions 0.8.2 and 0.8.3

Updated @uirouter/angularjs from 1.0.18 to 1.0.19

Compare @uirouter/angularjs versions 1.0.18 and 1.0.19

Bug Fixes

  • npm: Publish to the old angular-ui-router npm package too (8fc3bb2)
  • resolve: Detect and honor strictDi in angularjs versions 1.3 and 1.4 (1368c18), closes #3678
  • state: When creating absolute hrefs in hashbang mode, include the location.pathname (cd426e5), closes #3710
  • uiview: Allow uiOnParamsChanged to work with states that have a componentProvider (fe91bd3), closes #3707

0.3.0 (2018-05-28)

Compare @uirouter/react-hybrid versions 0.2.0 and 0.3.0

Bug Fixes

  • decorateUIRouterViewConfigs: fix issue with key = but selfView def is '' (3579894), closes #10

Features

  • Support UI-Router 0.8.2 and switch to React 16.3 context API (09af7b6)

BREAKING CHANGES

  • This version of react-hybrid requires @uirouter/react version 0.8.2 or higher and requires React 16.3.x or higher.

Updated @uirouter/core from 5.0.18 to 5.0.19

Compare @uirouter/core versions 5.0.18 and 5.0.19

Bug Fixes

Updated @uirouter/react from 0.7.0 to 0.8.2

Compare @uirouter/react versions 0.7.0 and 0.8.2

Bug Fixes

  • enzyme: fix enzyme patch leaving a file called '-' (4c2157c)
  • UISref/UISrefActive: make proptypes non-required: parentUIView, addStateInfoToParentActive (c7aa299), closes #173

Features

  • internal: Change UIView from arrow to Component Class (ce2bc1e)
  • internal: exposed the internal View component for use by @uirouter/react-hybrid (9c07226)
  • UIView: force component re-mount on reload() (d01162a), closes #172

BREAKING CHANGES

  • UIView: when a state is entered/exited the State Component is remounted, re-running its lifecycle methods.

Updated @uirouter/angularjs from 1.0.16 to 1.0.18

Compare @uirouter/angularjs versions 1.0.16 and 1.0.18

Bug Fixes

  • bundles: Do not run prettier against release/* bundles when publishing to bower (9b420fa)

0.2.0 (2018-05-05)

Compare @uirouter/react-hybrid versions 0.1.0 and 0.2.0

Updated @uirouter/core from 5.0.17 to 5.0.18

Compare @uirouter/core versions 5.0.17 and 5.0.18

Bug Fixes

  • angular: A hack to force the Angular compiler to import from module index (d56a2be)
  • StateRegistry: Notify listeners of added states when there are orphans in the state queue (5a9bac9)
  • transition: Fix typing of Transition.params() (ebea30e)
  • transition: Normalize error() to always return Rejection (9bcc5db)

Updated @uirouter/react from 0.6.2 to 0.7.0

Compare @uirouter/react versions 0.6.2 and 0.7.0

Bug Fixes

  • package: update prop-types to version 15.6.1 (1d0ee26)

Features

  • use new React 16.3 context API (580700f), closes #54
  • react: update minimum react version supported (4acb7a7)

BREAKING CHANGES

  • react: from version 0.7.0 @uirouter/react only supports react from version 16.3.x because of the new Context API. If you need to use it with previous versions of React you should check the 0.6.x, but bear in mind that it’s no longer supported and it’s advised to update React instead.
  • @uirouter/react now uses the new React 16.3 Context API. If you were accessing the router instance via the legacy context api (which was never explecitly supported) you need to update your code accordingly:

before:

class SomeComponent extends React.Component {
  static contextTypes = {
    router: PropTypes.object
  }

  render () {
    // access context via this.context
    const router = this.context.router;
    // do whatever needed with the router
  }
}

after:

class SomeComponent extends React.Component {
  render () {
    // access router via props
    const router = this.props.router;
    // do whatever needed with the router
  }
}

// when rendering the component wrap it with the `<UIRouterConsumer>` component
<UIRouterConsumer>
  {router => <SomeComponent router={router} />}
</UIRouterConsumer>

Updated @uirouter/angularjs from 1.0.15 to 1.0.16

Compare @uirouter/angularjs versions 1.0.15 and 1.0.16

Bug Fixes

  • docs: downgrade to @types/angular@1.6.25 to fix typings error when generating docs (5850136)

0.1.1 (2018-05-05)

Compare @uirouter/react-hybrid versions 0.1.0 and 0.1.1

Updated @uirouter/core from 5.0.17 to 5.0.18

Compare @uirouter/core versions 5.0.17 and 5.0.18

Bug Fixes

  • angular: A hack to force the Angular compiler to import from module index (d56a2be)
  • StateRegistry: Notify listeners of added states when there are orphans in the state queue (5a9bac9)
  • transition: Fix typing of Transition.params() (ebea30e)
  • transition: Normalize error() to always return Rejection (9bcc5db)

Updated @uirouter/react from 0.6.2 to 0.7.0

Compare @uirouter/react versions 0.6.2 and 0.7.0

Bug Fixes

  • package: update prop-types to version 15.6.1 (1d0ee26)

Features

  • use new React 16.3 context API (580700f), closes #54
  • react: update minimum react version supported (4acb7a7)

BREAKING CHANGES

  • react: from version 0.7.0 @uirouter/react only supports react from version 16.3.x because of the new Context API. If you need to use it with previous versions of React you should check the 0.6.x, but bear in mind that it’s no longer supported and it’s advised to update React instead.
  • @uirouter/react now uses the new React 16.3 Context API. If you were accessing the router instance via the legacy context api (which was never explecitly supported) you need to update your code accordingly:

before:

class SomeComponent extends React.Component {
  static contextTypes = {
    router: PropTypes.object
  }

  render () {
    // access context via this.context
    const router = this.context.router;
    // do whatever needed with the router
  }
}

after:

class SomeComponent extends React.Component {
  render () {
    // access router via props
    const router = this.props.router;
    // do whatever needed with the router
  }
}

// when rendering the component wrap it with the `<UIRouterConsumer>` component
<UIRouterConsumer>
  {router => <SomeComponent router={router} />}
</UIRouterConsumer>

Updated @uirouter/angularjs from 1.0.15 to 1.0.16

Compare @uirouter/angularjs versions 1.0.15 and 1.0.16

Bug Fixes

  • docs: downgrade to @types/angular@1.6.25 to fix typings error when generating docs (5850136)

0.1.0 (2018-03-10)

Compare @uirouter/react-hybrid versions 0.0.16 and 0.1.0

Bug Fixes

  • react-hybrid: Fix errors surfaced by react 16 (f61e241)

0.0.16 (2018-02-12)

Compare @uirouter/react-hybrid versions 0.0.15 and 0.0.16

Updated @uirouter/core from 5.0.16 to 5.0.17

Compare @uirouter/core versions 5.0.16 and 5.0.17

Bug Fixes

  • core: Fix leak of old transitions by mutating pathnode*.resolvables*.data (0a1f518)

Updated @uirouter/react from 0.6.1 to 0.6.2

Compare @uirouter/react versions 0.6.1 and 0.6.2

Bug Fixes

  • package: update @uirouter/core to version 5.0.17 (b0109ee)
  • UIView: Do not reload view if the new viewConfig is identical to the old one (07a03bf)
  • UIView: Pass style prop through even if no className is specified (cc3d80d)
  • UIView: Provide only resolve props that should be accessible to each view (a4ee9e9)

Updated @uirouter/angularjs from 1.0.14 to 1.0.15

Compare @uirouter/angularjs versions 1.0.14 and 1.0.15

Bug Fixes

0.0.15 (2018-01-31)

Compare @uirouter/react-hybrid versions 0.0.14 and 0.0.15

Updated @uirouter/core from 5.0.11 to 5.0.16

Compare @uirouter/core versions 5.0.11 and 5.0.16

Bug Fixes

  • browserLocation: Use location.pathname (not href) or '/' when no base tag found (db461d6)
  • browserLocationConfig: If no base href found, use location.href (not empty string) (0251424)
  • common: Fix signature of for objects (make target optional) (61d0afc)
  • core: Fix memory leak of resolve data from ALL transitions ever (7f2aed1)
  • pathNode: add backwards compat for PathNode.clone(). Add retainedWithToParams to treeChanges interface. (4833a32)
  • pushStateLocation: Fix URLs: add slash between base and path when necessary (bfa5755)
  • pushStateLocation: When url is "" or "/", use baseHref for pushState (042a950)
  • resolve: Add onFinish hook to resolve any dynamicly added resolvables (7d1ca54)
  • trace: Fix null reference in uiview name sort function (59cb067)
  • treeChanges: apply toParams to 'retained' path (#72) (cf63d11)
  • urlRouter: Update query params when resetting url via .update() (7664cd0)

Features

  • common: Add map-in-place support to map() (12bc7d8)
  • common: Add onEvict() callback registry for queues with max length (c19d007)
  • view: Add onSync callback API to plugin API (9544ae5)

Updated @uirouter/react from 0.5.4 to 0.6.1

Compare @uirouter/react versions 0.5.4 and 0.6.1

Bug Fixes

Features

  • move prop-types from peerDependencies to dependecies (5c6b2dd), closes #70
  • UIRouterReact: throw if start is called more than once (d48c9fb), closes #65
  • UIView: resolves are now injected as root props (ff67239)
  • UIView: warn user when using transition as resolve token (10b247b)

BREAKING CHANGES

  • UIView: Previously resolves were accessible as properties of a resolves props injected in the routed component. They are now each injected as a prop. This way components don't need to be aware of the router and can be more reusable.

before:

render () {
  const { foo } = this.props.resolves;
  return <div>{foo}</div>;
}

after:

render () {
  const { foo } = this.props;
  return <div>{foo}</div>
}

Updated @uirouter/angularjs from 1.0.9 to 1.0.14

Compare @uirouter/angularjs versions 1.0.9 and 1.0.14

Bug Fixes

  • artifactory: Add trailing newline to package.json to work around artifactory issue (#3551) (d09a345), closes #3550
  • location: allow empty string param: Ng1LocationServices.url('') (01bbaf0)
  • onEnter: Do not inject child-state data into ng1 onEnter hooks (cdec6a0)
  • package: update @uirouter/core to version 5.0.13 (6c63f2d)
  • travis: regenerate and encrypt secret (c718ce5)
  • uiSrefActive: don't match fuzzy on lazy loaded future states (01430ee)
  • uiView: Fix cfg.getTemplate is undefined (f4d99b0)

Features

  • uiSrefActive: Support arrays of globs for ng-class style (b215343)

0.0.14 (2017-10-17)

Compare @uirouter/react-hybrid versions 0.0.13 and 0.0.14

Updated @uirouter/core from 5.0.10 to 5.0.11

Compare @uirouter/core versions 5.0.10 and 5.0.11

Bug Fixes

  • ie9: make console.bind work in ie9 (#85) (318214b)

Updated @uirouter/react from 0.5.3 to 0.5.4

Compare @uirouter/react versions 0.5.3 and 0.5.4

Updated @uirouter/angularjs from 1.0.8 to 1.0.9

Compare @uirouter/angularjs versions 1.0.8 and 1.0.9

0.0.13 (2017-10-07)

Compare @uirouter/react-hybrid versions 0.0.12 and 0.0.13

0.0.12 (2017-07-14)

Fix botched 0.0.11 release

0.0.11 (2017-07-14)

Features

  • className: Pass <UIView className="foo"> to <ui-view class="foo"> (4bfcfac)

0.0.10 (2017-07-14)

  • feat(uiView): Render angular ui-view manually, not using angular2react dependencyj (ada97c8)
  • chore(build): Add missing rollup config (f686175)

0.0.9 (2017-07-13)

  • fix(build): Import uirouter/react and uirouter/angularjs libs from index.js for webpack, etc (a936996)

0.0.8 (2017-07-13)

  • docs(README): Remove limitation from docs because the limitation is no more! (3684428)
  • fix(uiView): Fix nested UIView lifecycle by waiting for ref before rendering a component (cdac3b7)

0.0.7 (2017-07-12)

  • fix(yarn): Publish uirouter/react and uirouter/angularjs to npm, not github tags (c8569fe)
  • feat(uiView): Allow routing either angularjs or react components to all ui-views (3dff2df)

0.0.6 (2017-07-07)

  • feat(view): Auto-detect react component (21e9d98)

0.0.5 (2017-06-29)

  • fix(typescript): Apply updates for typescript 2.4. Update to new snapshots of @uirouter/angularjs+re (c836579)

0.0.4 (2017-06-28)

  • fix(UIRouterContext): Fix UIRouterContext decorator (4a83102)

0.0.3 (2017-06-26)

  • feat(adapter): Enable AngularJS ui-sref and ui-sref-active for angular2react children of react UIVie (ae11777)

0.0.2 (2017-06-23)

  • feat(adapter): Implement ui-view adapters allowing states to route to React components (d1dbad5)
  • chore(build): Build lib and lib-esm (744c49e)
  • chore(readme): Update README (83dc68a)
  • Initial commit (5ae2db5)