New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular-breadcrumb

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-breadcrumb - npm Package Versions

0.5.0

Diff
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>

ncuillery
published 0.4.1 •
ncuillery
published 0.4.0 •
ncuillery
published 0.3.3 •
ncuillery
published 0.3.2 •
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>

0.2.3 (2014-07-26)

Bug Fixes
  • $breadcrumb: use $stateParams in case of unhierarchical states (1c3c05e0, closes #29)

<a name="0.2.2"></a>

0.2.2 (2014-06-23)

Bug Fixes
  • catch the $viewContentLoaded earlier (bb47dd54, closes #14)
  • sample:
    • make the CRU(D) about rooms working (3ca89ec7)
    • prevent direct URL access to a day disabled in the datepicker (95236916, closes #17)
    • use the same variable in the datepicker and from url params for state booking.day (646f7060, closes #16)
Features
  • ncyBreadcrumb: watch every expression founded in labels (1363515e, closes #20)

<a name="0.2.1"></a>

0.2.1 (2014-05-16)

Bug Fixes
  • $breadcrumb: check if a state has a parent when looking for an inheritated property (77e668b5, closes #11)

<a name="0.2.0"></a>

0.2.0 (2014-05-08)

Bug Fixes
  • $breadcrumb: remove abstract states from breadcrumb (8a06c5ab, closes #8)
  • ncyBreadcrumb: display the correct breadcrumb in case of direct access (e1f455ba, closes #10)
Features
  • $breadcrumb:
    • add a configuration property for skipping a state in the breadcrumb (dd255d90, closes #9)
    • allow chain of states customization (028e493a, closes #7)
  • ncyBreadcrumb: add 'Element' declaration style '<ncy-breadcrumb />' (b51441ea)