Custom Components
  1. Custom Components

angular-ui-bootstrap

Public
AuthorCommitMessageCommit dateIssues
Tasos BekosTasos Bekos
93cd0df8d45fix(datepicker): set default zero time after no date selectedCloses #1065
Tasos BekosTasos Bekos
60515ae16f7fix(tooltip): update tooltip content when emptyCloses #1348
Christopher BebryChristopher Bebry
40b80c3b31bdocs(pagination): spelling correctionsCloses #1358
Tasos BekosTasos Bekos
365573ab247feat(progressbar): add `max` attribute & support transclusion * General refactor. Move logic to controller. * Remove `onFull` & `onEmpty` handlers. * Remove automatic types and stacked types. * `progress` & `bar` transclude content to support text & extra elements. BREAKING CHANGE: The onFull/onEmpty handlers & auto/stacked types have been removed. To migrate your code change your markup like below. Before: <progress percent="var" class="pro...
Sterling CamdenSterling Camden
d64f4a976b2fix(modal): put backdrop in before windowCloses #1313
Tasos BekosTasos Bekos
8b1ab79a832feat(timepicker): default meridian labels based on localeCloses #1150
Tasos BekosTasos Bekos
79f836c3944refactor(accordion): remove unused dependency injections
Tasos BekosTasos Bekos
4d158e0dd97feat(datepicker): option whether to display button bar in popup
Tasos BekosTasos Bekos
9ec21286ea2fix(accordion): correct `is-open` handling for dynamic groupsCloses #1297
Pawel KozlowskiPawel Kozlowski
2abadcad2ccchore(release): Starting v0.8.0-SNAPSHOT
Pawel KozlowskiPawel Kozlowski
9dbc2390f2dchore(release): v0.7.0
Tasos BekosTasos Bekos
c7b097b5ab8test(alert): fix wrong assertion test for close button
Murray SmithMurray Smith
6efd6745b28docs(modal): fix typo
Sean KennySean Kenny
0e9f9980ed7fix(typeahead): support IE8
Pawel KozlowskiPawel Kozlowski
0d810acdb9ffix(tooltip): tackle DOM node and event handlers leakCloses #1133
Pawel KozlowskiPawel Kozlowski
127ab70dc3estyle(all): rename test files to keep extensions consistent
Pawel KozlowskiPawel Kozlowski
d290fd2b542refactor(modal): remove unused templates
Pawel KozlowskiPawel Kozlowski
b3b2a9845b6docs(README): info on building a subset of modules
Pierre TardyPierre Tardy
a7bd3169a91chore(readme): add a note in readme about custom build
Pawel KozlowskiPawel Kozlowski
9eca35a8de1fix(collapse): add the "in" class for expanded panelsCloses #1192
Pawel KozlowskiPawel Kozlowski
a72c635c766fix(collapse): remove element height watchingFor unclear reasons the directive was watching DOM element's height which incurs performance penalty. Normally this watching shouldn't be necessery as collapsible elements should get height: auto; Closes #1222
Pawel KozlowskiPawel Kozlowski
fd21214d42dfix(typeahead): evaluate matches source against a correct scopeCloses #1238
Utkarsh UpadhyayUtkarsh Upadhyay
968e54072bbfix(position): correct positioning for SVG elementsBootstrap tooltips calculate the `width` and `height` of elements using first getBoundingClientRect and fall back to `offsetWidth` and `offsetHeight` if it is not available: https://github.com/twbs/bootstrap/blob/master/js/tooltip.js#L297 This fixes a problem with tooltips/popovers on SVG elements in Firefox: https://github.com/twbs/bootstrap/issues/5956 This change mimics that behavior. Cl...
Tyler AkinsTyler Akins
5a01a6960c7docs(modal): fix double "a" typoCloses #1214
metimusmetimus
570dba904fbfix(datepicker): properly handle showWeeks config optionCloses #1132
Pawel KozlowskiPawel Kozlowski
253c49ff26cfix(typeahead): prevent accidental form submission on ENTER
Pawel KozlowskiPawel Kozlowski
85647c9b64adocs(README): fix markup
scarletskyscarletsky
cc2df9a02d0docs(README): add info about templates customization
Pawel KozlowskiPawel Kozlowski
4801564390arefactor(alert): clean-up unused variables
Martin CortezMartin Cortez
ee67a9c843dtest(typeahead): corrects typosCloses #1209
JonasJonas
104bdd1be82feat(dropdownToggle): disable dropdown when it has the disabled class
stan-zstan-z
78a1e9d7492fix(datapicker): set popup initial position in append-to-body caseSet the initial position offsets of the datepicker popup element in case of appended to 'body'. Todo: refresh the position on parent elements resize.
sohaisohai
5d9bd0584e2feat(tooltip): add ability to enable / disable tooltip
Pawel KozlowskiPawel Kozlowski
cf5c27ae8f4fix(tooltip): hide tooltips when content becomes emptyCloses #875
Pawel KozlowskiPawel Kozlowski
0149eff61e4fix(typeahead): fix loading callback when deleting charactersCloses #1140
Caitlin PotterCaitlin Potter
0cdc4609d74feat(datepicker): datepicker-append-to-body attributeAttribute / option specifies where in the DOM to place the datepicker popup elements. If this option evaluates to 'true', the datepicker popup elements are appended to 'body'. Otherwise, they follow the directive element.
Josh ClantonJosh Clanton
4540476fa3cfix(datapicker): some IE8 compatibility improvements
Arve SeljebuArve Seljebu
e01bddf14dedocs(README): add build instructions for explicit modules
Tasos BekosTasos Bekos
8ecf93edb06fix(pagination): handle extreme values for `total-items`Closes #1104
sebastiansebastian
53709f0ff61fix(timepicker): use html5 for input elements
Tasos BekosTasos Bekos
cf228827a58chore(demo): document BS's supported version & link to dependenciesCloses #1093
Tasos BekosTasos Bekos
81164dae388fix(pagination): fix altering of current page caused by totals changeCloses #1079
J BruniJ Bruni
58cd74bc093refactor(datepicker): removed duplicated css class in a template
Tasos BekosTasos Bekos
aa3eaa91485feat(datepicker): dynamic date format for popupCloses #1071
Caitlin PotterCaitlin Potter
473838677ffdocs(README): Add david-dm.org devDependencies status image
Chris ChuaChris Chua
a08173ec791fix(tabs): initial tab selectionCloses #834, Fixes #747 - Avoid re-initializing `tab.active` - `setActive` only when all `tab.active` are set up (on the next digest cycle) Before I go to explain, there are up to two expressions that indicate whether a tab is active: 1. `active` variable in the isolate scope of the tab directive 2. The expression from the active attribute (`attrs.active`) if it is set, I'll call ...
mrmrsmrmrs
509357e76e4style(all): remove unneccessary px declarations from values set to 0
Pawel KozlowskiPawel Kozlowski
e67dfbcda23chore(demo): fix custom build linkCloses #1054
Pawel KozlowskiPawel Kozlowski
d1f9453003cfix(typeahead): don't show matches if an element is not focusedCloses #964
Tasos BekosTasos Bekos
c6ba8d7f310feat(datepicker): add i18n support for bar buttons in popupCloses #777