Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angular-ui-bootstrap

Package Overview
Dependencies
Maintainers
3
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-ui-bootstrap - npm Package Versions

1235

1.0.3

Diff

Changelog

Source

1.0.3 (2016-01-12)

Bug Fixes

  • timepicker: fix injection (627a451)

<a name="1.0.2"></a>

wesleycho
published 1.0.1 •

Changelog

Source

1.0.1 (2016-01-12)

Bug Fixes

Features

<a name="1.0.0"></a>

wesleycho
published 1.0.0 •

Changelog

Source

1.0.0 (2016-01-08)

Bug Fixes

Features

  • accordion: remove deprecated code (0010aff), closes #4706
  • alert: remove deprecated code (21e852b), closes #4714
  • buttons: add uib-uncheckable support (b77618e), closes #3604 #4791
  • buttons: remove deprecated code (b549263), closes #4716
  • carousel: expose next and prev on controller (9b80ee1), closes #4851 #4853
  • carousel: remove deprecated code (b159b21), closes #4717
  • collapse: remove deprecated code (bc004df), closes #4715
  • dateparser: add M! and d! support (b1cfc57), closes #4805 #4809
  • dateparser: add new format support (ea388b3), closes #3418 #4833
  • dateparser: add support for literals (1c79888), closes #3914 #4426
  • dateparser: add Z support (2fb812b), closes #4831
  • dateparser: change template literal from ' to ` (9513f10), closes #4880 #4936 #4938
  • dateparser: remove deprecated code (2d68f41), closes #4718
  • datepicker: add allowInvalid support (2460e42), closes #4694 #4837
  • datepicker: add disabled and ngDisabled support (434c602), closes #4059 #4814
  • datepicker: add semantic classes (97c4333), closes #4761
  • datepicker: add timezone support (09098f8), closes #5062
  • datepicker: implements alternative format support (8bfeda0), closes #4951 #4952
  • datepicker: pass through attrs in popup (26d3103), closes #4863 #3338
  • datepicker: remove deprecated code (2fc3f21), closes #4708
  • datepicker: yearRange -> yearRows and yearColumns (b784422), closes #3348 #4970
  • dropdown: add append-to support (809ecdb), closes #4467 #4488
  • dropdown: add open class support (0495ff0), closes #4466 #4794
  • dropdown: remove deprecated code (ca3a343), closes #4719
  • modal: add appendTo support (16d854c), closes #4599
  • modal: add closed promise (e9c4977), closes #4979
  • modal: add pluggable resolve support (2635f0d), closes #3405 #5078
  • modal: allow appending outside iframe (80df015), closes #4818
  • modal: change to use $animate (742132a), closes #3418 #4834
  • modal: remove deprecated code (a85d499), closes #4709
  • modal: support requiring from parent directive (e28cced), closes #3765 #4844
  • pager: change controllerAs to pager (5890248), closes #4961
  • pager: move to separate component (2a3314d), closes #4935
  • pagination: add force-ellipses option and boundaryLinkNumbers (56642ea), closes #2924 #3064 #3565
  • pagination: remove deprecated code (75e493a), closes #4720
  • pagination: Show ellipsis when rotating (3f307e4)
  • paging: factor out common controller code (f2f8c4e), closes #4803 #4968
  • position: implement auto positioning (d265113)
  • position: remove deprecated code (42fa28f), closes #4721
  • progressbar: remove deprecated code (0669b06), closes #4722
  • rating: remove deprecated code (d844623), closes #4723
  • tabs: add controllerAs support (a5cac90), closes #5019 #5020
  • tabs: remove deprecated code (1b75164), closes #4710
  • timepicker: add model state support (fe69386), closes #3527 #4835
  • timepicker: add ngDisabled support (4651191), closes #2219 #4811
  • timepicker: add semantic classes (1a822a1), closes #4764 #4971
  • timepicker: add support for seconds (c7fa845), closes #4768
  • timepicker: added ability to handle empty model (8ffdaeb), closes #1114 #4203 #4617
  • timepicker: remove deprecated code (feb2b73), closes #4712
  • tooltip: add appendToBody only attribute support (2a1aaf2), closes #4945 #5071
  • tooltip: add outsideClick trigger (8737303), closes #4419 #4871
  • tooltip: change back to jqLite listeners (a5ca78a), closes #4886 #5157
  • tooltip: remove deprecated code (187f64c), closes #4713
  • typeahead: change to appendTo (8637afc), closes #4797
  • add npm support in main repository (a9e476f), closes #4739 #5129
  • prefix virtual templates with uib/ (342c576), closes #1205 #4839
  • typeahead: add 'is-open' support (167cfad), closes #4760 #4779
  • typeahead: add ability to scroll with matches (a1355e7), closes #4463
  • typeahead: add dynamic toggling of Editable (a5bafe6), closes #2638 #4820
  • typeahead: add event object to onSelect (3e876b8), closes #5165
  • typeahead: add min-length === 0 support (d859f42), closes #764 #2324 #4789
  • typeahead: add ng-model-options debounce support (bd47f6c), closes #4982
  • typeahead: add show-hint option (ef82ad1), closes #2570 #4784
  • typeahead: remove deprecated code (606d419), closes #4711

Reverts

BREAKING CHANGES

  • all: All of the deprecated services/directives/etc. are removed - one must use all prefixed versions instead
  • pager: As part of the split of the pager component from the pagination component, this changes the controllerAs use to pager from pagination
  • dropdown: keyboard-nav for the dropdown is no longer a directive and to use it you have to use keyboard-nav instead of uib-keyboard-nav.
  • dropdown: remove class support for uib-dropdown-menu directive.
  • All virtual templates in UI Bootstrap now are prefixed with uib/ - if one is overriding the templates via $templateCache path or manually building the templates from the UI Bootstrap repository, one needs to change the string used in the $templateCache representation to have the new prefix
  • typeahead: Usage before
<div id="typeahead-container"></div>
<input typeahead="state for state in states | filter: $viewValue | limitTo: 8" typeahead-append-to-element-id="typeahead-container">

After

<div id="typeahead-container"></div>
<input typeahead="state for state in states | filter: $viewValue | limitTo: 8" typeahead-append-to="typeaheadContainer">
$scope.typeaheadContainer = angular.element(document.querySelector('#typeaheadContainer'));
  • tab: This causes the cursor style to be removed from the tab - implement CSS on the .uib-tab > div selector, or similar, accordingly
  • accordion: This causes the cursor style to be removed from the heading - implement CSS on the accordion-toggle class accordingly
  • datepicker: yearRange is replaced by yearRows and yearColumns for manually specifying the dimensions of the yearpicker. If one wants the prior behavior with yearRange with a different number of rows, just set yearRows

<a name="0.14.3"></a>

wesleycho
published 0.14.3 •

Changelog

Source

0.14.3 (2015-10-23)

Bug Fixes

Features

<a name="0.14.2"></a>

wesleycho
published 0.14.2 •

Changelog

Source

0.14.2 (2015-10-14)

Bug Fixes

<a name="0.14.1"></a>

wesleycho
published 0.14.1 •

Changelog

Source

0.14.1 (2015-10-11)

Bug Fixes

  • accordion: make deprecated controller work with 1.3.x (c5e6042), closes #4574
  • alert: make deprecated controller work with 1.3.x (e8c8ee6), closes #4576
  • buttons: make deprecated controller work with 1.3.x (1e3cbd8), closes #4577
  • carousel: make deprecated controller work with 1.3.x (f6c7931), closes #4578
  • datepicker: make deprecated controller work with 1.3.x (18371ab), closes #4586
  • dropdown: make deprecated controller work with 1.3.x (ae1a87c), closes #4585
  • pagination: make deprecated controller work with 1.3.x (d50e8d2), closes #4580
  • progressbar: make deprecated controller work with 1.3.x (1c5e479), closes #4581
  • rating: make deprecated controller work with 1.3.x (ce1114a), closes #4582
  • tabs: make deprecated controller work with 1.3.x (685bd6a), closes #4583
  • timepicker: make deprecated controller work with 1.3.x (00f60ee), closes #4584

Features

<a name="0.14.0"></a>

wesleycho
published 0.14.0 •

Changelog

Source

0.14.0 (2015-10-09)

Bug Fixes

Features

Reverts

  • dropdown: undo adding of open class on body (6f9f1fc)

BREAKING CHANGES

  • Removes focus on datepicker on selection of a date via keyboard for accessibility reasons

<a name="0.13.4"></a>

wesleycho
published 0.13.4 •

Changelog

Source

0.13.4 (2015-09-03)

Bug Fixes

Features

Breaking Changes

  • buttons

    • hide nested <input> elements on btn-radio and btn-checkbox directives.

    Fixes #3264 Closes #4282

    (a06afe6)

  • dropdown

    • when using append-to-body, both the dropdown and open classes are added to the <body> element.
    • this differs from the existing behavior in that it will no longer toggle based on the existing dropdown directive element, but on the body element instead.

    Fixes #4240 Closes #4305

    (bf63cef)

  • tooltip

    • Switch to use addEventListener and removeEventListener to prevent jqLite/jQuery bug where the events are swallowed on disabled elements
    • this affects custom events, which must now be dispatched with element[0].dispatchEvent(new Event('customEvent')), as opposed to element.trigger('customEvent')

    Fixes #4060 Closes #4322

    (7556bed)

  • typeahead

    • for security reasons, only whitelisted HTML should be added.
    • the typeahead match template now uses ng-bind-html instead of bind-html-unsafe.
    • typeahead now uses the $sce service when ngSanitize is present and logs a warning if it is not.

    Fixes #2884 Closes #3463 Closes #4073

    (bb9fa1a)

<a name"0.13.3"></a>

wesleycho
published 0.13.3 •

Changelog

Source

0.13.3 (2015-08-09)

Bug Fixes

Features

Breaking Changes

  • add open class to accordion group when expanded

Closes #4152 Closes #3419

(ead15e37)

  • Allow the user to hit esc inside an element in a modal and not exit the modal if the event has been defaultPrevented

Closes #3551 Fixes #2544

(a05b9c1a)

  • Change validation key to dateDisabled to align better with Angular's convention

Closes #2773 Closes #4080

(5245ccad)

<a name"0.13.2"></a>

foxandxss
published 0.13.2 •

Changelog

Source

0.13.2 (2015-08-02)

Bug Fixes

Features

<a name"0.13.1"></a>

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc