🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

angular-breadcrumb

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-breadcrumb - npm Package Versions

ncuillery
published 0.5.0 •

Changelog

Source

0.5.0 (2016-11-14)

Bug Fixes

  • Register listeners once to prevent scope being retained (181f4c09, closes #98)

Features

  • Expose ncyBreadcrumbStateRef for ui-sref usage in custom template (56cec38b, closes #54)
  • ncyBreadcrumbLast: Add custom templating (974f99b5, closes #123, #125)

<a name="0.4.1"></a>

0.4.1 (2015-08-09)

Features

  • add the scope-based ncyBreadcrumbIgnore flag (934c5523, closes #42, #62)

<a name="0.4.0"></a>

0.4.0 (2015-05-17)

Bug Fixes

  • $breadcrumb: Handle parents provided by StateObject references (f4288d37, closes #82)
  • ncyBreadcrumb:
    • Prevent memory leak when label is a binding (264e10f6, closes #88)
    • Removed trailing spaces from breadcrumb items(bc276ed5, closes #77)

Features

  • Add force to ncyBreadcrumb options (31125a38, closes #78)
  • ncyBreadcrumbText: Add ncyBreadcrumbText directive (82b2b443, closes #71, #83)

<a name="0.3.3"></a>

0.3.3 (2014-12-16)

Bug Fixes

  • ncyBreadcrumb: define $$templates with var instead of attaching it to window (c35c9d25, closes #55)

<a name="0.3.2"></a>

0.3.2 (2014-11-15)

  • npm: nothing, it's only a blank release due to a network problem during the last npm publish (f...ing npm doesn't allow a republish with the same version number npm-registry-couchapp#148).

<a name="0.3.1"></a>

0.3.1 (2014-11-15)

Bug Fixes

  • npm: update package.json after (unclean) npm publish (ab8161c2, closes #52)
  • sample: Send correct url params for the room link in booking view (876de49a)

<a name="0.3.0"></a>

ncuillery
published 0.4.1 •

Changelog

Source

0.4.1 (2015-08-09)

Features

  • add the scope-based ncyBreadcrumbIgnore flag (934c5523, closes #42, #62)

<a name="0.4.0"></a>

ncuillery
published 0.4.0 •

Changelog

Source

0.4.0 (2015-05-17)

Bug Fixes

  • $breadcrumb: Handle parents provided by StateObject references (f4288d37, closes #82)
  • ncyBreadcrumb:
    • Prevent memory leak when label is a binding (264e10f6, closes #88)
    • Removed trailing spaces from breadcrumb items(bc276ed5, closes #77)

Features

  • Add force to ncyBreadcrumb options (31125a38, closes #78)
  • ncyBreadcrumbText: Add ncyBreadcrumbText directive (82b2b443, closes #71, #83)

<a name="0.3.3"></a>

ncuillery
published 0.3.3 •

Changelog

Source

0.3.3 (2014-12-16)

Bug Fixes

  • ncyBreadcrumb: define $$templates with var instead of attaching it to window (c35c9d25, closes #55)

<a name="0.3.2"></a>

ncuillery
published 0.3.2 •

Changelog

Source

0.3.2 (2014-11-15)

  • npm: nothing, it's only a blank release due to a network problem during the last npm publish (f...ing npm doesn't allow a republish with the same version number npm-registry-couchapp#148).

<a name="0.3.1"></a>

ncuillery
published 0.3.0 •

Changelog

Source

0.3.0 (2014-10-29)

Bug Fixes

  • organize state-level options in ncyBreadcrumb key instead of data (1ea436d3, closes #30)
  • curly braces appearing on title of sample app (855e76cb)

Features

  • Add a global option to include abstract states (6f0461ea, closes #35, #28)
  • $breadcrumb:
    • Support url params when using ncyBreadcrumb.parent property (55730045, closes #46)
    • add the customization of the parent state with a function (ada09015, closes #32)
  • ncyBreadcrumbLast: Add a new directive rendering the last step (1eef24fb, closes #37)

Breaking Changes

  • state-level options has been moved under the custom key ncyBreadcrumb in state's configuration.

To migrate the code follow the example below:

// Before
$stateProvider.state('A', {
  url: '/a',
  data: {
    ncyBreadcrumbLabel: 'State A'
  }
});
// After
$stateProvider.state('A', {
  url: '/a',
  ncyBreadcrumb: {
    label: 'State A'
  }
});

See API reference for more informations. (1ea436d3)

<a name="0.2.3"></a>